Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,13 @@ XLS, XLSX, PPTX, DOC, DOCX, MobiXML, JPEG, EMF, PNG, BMP, GIF, TIFF, Text
## Read PDF Formats
MHT, PCL, PS, XSLFO, MD

## Enhancements in Version 25.9
- Implement PDF document page crop functionality using the Pdf.Cloud API library.
## Enhancements in Version 25.10
- A new version of Aspose.PDF Cloud was prepared using the latest version of Aspose.PDF for .NET.

## Bugs fixed in Version 25.10
- Method PutBookmark does not change bookmark color.
- TextReplace shows hidden text in the output file.

## Requirements
Building the API client library requires [Maven](https://maven.apache.org/) to be installed.

Expand All @@ -58,7 +61,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-pdf-cloud-android</artifactId>
<version>25.9.0</version>
<version>25.10.0</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -67,7 +70,7 @@ Add this dependency to your project's POM:
Add this dependency to your project's build file:

```groovy
compile "com.aspose:aspose-pdf-cloud-android:25.9.0"
compile "com.aspose:aspose-pdf-cloud-android:25.10.0"
```

### Others
Expand All @@ -77,7 +80,7 @@ At first generate the JAR by executing:

Then manually install the following JARs:

* target/aspose-pdf-cloud-android-25.9.0.jar
* target/aspose-pdf-cloud-android-25.10.0.jar
* target/lib/*.jar

## Getting Started
Expand Down
2 changes: 1 addition & 1 deletion sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ apply plugin: 'idea'
apply plugin: 'eclipse'

group = 'com.aspose'
version = '25.9.0'
version = '25.10.0'

buildscript {
repositories {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public ApiClient() {

// Add custom headers
addDefaultHeader("x-aspose-client", "android sdk");
addDefaultHeader("x-aspose-client-version", "25.9.0");
addDefaultHeader("x-aspose-client-version", "25.10.0");

// PDFCLOUD-418 Set default Connect Timeout
setConnectTimeout(5 * 60 * 1000);
Expand Down
6 changes: 6 additions & 0 deletions settings/credentials.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"client_secret": "YOUR_CLIENT_SECRET",
"client_id": "YOUR_CLIENT_ID",
"api_url": "https://api.aspose.cloud/v3.0",
"self_host": false
}