Skip to content

Commit 8a83ec0

Browse files
authored
Merge pull request #82 from aspose-pdf-cloud/develop
update 25.2
2 parents 2c92a3c + 0cebcd6 commit 8a83ec0

File tree

3 files changed

+10
-20
lines changed

3 files changed

+10
-20
lines changed

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,8 @@ XLS, XLSX, PPTX, DOC, DOCX, MobiXML, JPEG, EMF, PNG, BMP, GIF, TIFF, Text
2929
## Read PDF Formats
3030
MHT, PCL, PS, XSLFO, MD
3131

32-
## Enhancements in Version 25.1
32+
## Enhancements in Version 25.2
3333
- A new version of Aspose.PDF Cloud was prepared using the latest version of Aspose.PDF for .NET.
34-
3534
## Requirements
3635
Building the API client library requires [Maven](https://maven.apache.org/) to be installed.
3736

@@ -57,7 +56,7 @@ Add this dependency to your project's POM:
5756
<dependency>
5857
<groupId>com.aspose</groupId>
5958
<artifactId>aspose-pdf-cloud-android</artifactId>
60-
<version>25.1.0</version>
59+
<version>25.2.0</version>
6160
<scope>compile</scope>
6261
</dependency>
6362
```
@@ -66,7 +65,7 @@ Add this dependency to your project's POM:
6665
Add this dependency to your project's build file:
6766

6867
```groovy
69-
compile "com.aspose:aspose-pdf-cloud-android:25.1.0"
68+
compile "com.aspose:aspose-pdf-cloud-android:25.2.0"
7069
```
7170

7271
### Others
@@ -76,7 +75,7 @@ At first generate the JAR by executing:
7675

7776
Then manually install the following JARs:
7877

79-
* target/aspose-pdf-cloud-android-25.1.0.jar
78+
* target/aspose-pdf-cloud-android-25.2.0.jar
8079
* target/lib/*.jar
8180

8281
## Getting Started

sdk/build.gradle

Lines changed: 5 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ apply plugin: 'idea'
2020
apply plugin: 'eclipse'
2121

2222
group = 'com.aspose'
23-
version = '25.1.0'
23+
version = '25.2.0'
2424

2525
buildscript {
2626
repositories {
@@ -29,7 +29,6 @@ buildscript {
2929
dependencies {
3030
classpath 'com.android.tools.build:gradle:2.3.+'
3131
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
32-
classpath 'com.novoda:bintray-release:0.3.4'
3332
}
3433
}
3534

@@ -39,7 +38,6 @@ repositories {
3938

4039
apply plugin: 'com.android.library'
4140
apply plugin: 'com.github.dcendents.android-maven'
42-
apply plugin: 'com.novoda.bintray-release'
4341

4442
android {
4543
compileSdkVersion 27
@@ -76,6 +74,10 @@ afterEvaluate {
7674
}
7775
}
7876

77+
tasks.withType(Javadoc) {
78+
options.encoding = 'UTF-8'
79+
}
80+
7981
task sourcesJar(type: Jar) {
8082
from android.sourceSets.main.java.srcDirs
8183
classifier = 'sources'
@@ -95,14 +97,3 @@ dependencies {
9597
testCompile 'junit:junit:4.12'
9698
}
9799

98-
// bintray-release
99-
// https://github.com/novoda/bintray-release/wiki/Configuration-of-the-publish-closure
100-
publish {
101-
groupId = 'com.aspose'
102-
artifactId = 'aspose-cloud-pdf-android'
103-
publishVersion = '25.1.0'
104-
desc = 'Aspose.PDF Cloud is a REST API for creating and editing PDF files. It can also be used to convert PDF files to different formats like DOC, HTML, XPS, TIFF and many more. Aspose.PDF Cloud gives you control: create PDFs from scratch or from HTML, XML, template, database, XPS or an image. Render PDFs to image formats such as JPEG, PNG, GIF, BMP, TIFF and many others. Aspose.PDF Cloud helps you manipulate elements of a PDF file like text, annotations, watermarks, signatures, bookmarks, stamps and so on. Its REST API also allows you to manage PDF pages by using features like merging, splitting, and inserting. Add images to a PDF file or convert PDF pages to images.'
105-
licences = ['MIT']
106-
website = 'https://products.aspose.cloud/pdf/cloud'
107-
repository = 'https://github.com/aspose-pdf-cloud/aspose-pdf-cloud-android.git'
108-
}

sdk/src/main/java/com/aspose/asposecloudpdfandroid/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public ApiClient() {
9494

9595
// Add custom headers
9696
addDefaultHeader("x-aspose-client", "android sdk");
97-
addDefaultHeader("x-aspose-client-version", "25.1.0");
97+
addDefaultHeader("x-aspose-client-version", "25.2.0");
9898

9999
// PDFCLOUD-418 Set default Connect Timeout
100100
setConnectTimeout(5 * 60 * 1000);

0 commit comments

Comments
 (0)