Skip to content

Commit 8095a55

Browse files
authored
Merge pull request #83 from aspose-pdf-cloud/develop
update to 25.3
2 parents 8a83ec0 + ab8f931 commit 8095a55

File tree

7 files changed

+30
-8
lines changed

7 files changed

+30
-8
lines changed

.devcontainer/devcontainer.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "Android",
3+
"image": "mcr.microsoft.com/devcontainers/java:8",
4+
"features": {
5+
"ghcr.io/nordcominc/devcontainer-features/android-sdk:1.2.0": {
6+
"build_tools": "27.0.3",
7+
"platform": "27"
8+
}
9+
},
10+
"workspaceFolder": "/SDKs/Android",
11+
"workspaceMount": "source=${localWorkspaceFolder}/sdk,target=/SDKs/Android,type=bind,consistency=cached",
12+
"customizations": {
13+
"vscode": {
14+
"settings": {
15+
}
16+
}
17+
},
18+
"mounts": [
19+
"source=${localWorkspaceFolder}/../../Settings,target=/Settings,type=bind,consistency=cached"
20+
]
21+
}

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,9 @@ 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.2
32+
## Enhancements in Version 25.3
3333
- A new version of Aspose.PDF Cloud was prepared using the latest version of Aspose.PDF for .NET.
34+
3435
## Requirements
3536
Building the API client library requires [Maven](https://maven.apache.org/) to be installed.
3637

@@ -56,7 +57,7 @@ Add this dependency to your project's POM:
5657
<dependency>
5758
<groupId>com.aspose</groupId>
5859
<artifactId>aspose-pdf-cloud-android</artifactId>
59-
<version>25.2.0</version>
60+
<version>25.3.0</version>
6061
<scope>compile</scope>
6162
</dependency>
6263
```
@@ -65,7 +66,7 @@ Add this dependency to your project's POM:
6566
Add this dependency to your project's build file:
6667

6768
```groovy
68-
compile "com.aspose:aspose-pdf-cloud-android:25.2.0"
69+
compile "com.aspose:aspose-pdf-cloud-android:25.3.0"
6970
```
7071

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

7677
Then manually install the following JARs:
7778

78-
* target/aspose-pdf-cloud-android-25.2.0.jar
79+
* target/aspose-pdf-cloud-android-25.3.0.jar
7980
* target/lib/*.jar
8081

8182
## Getting Started

sdk/build.gradle

Lines changed: 1 addition & 1 deletion
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.2.0'
23+
version = '25.3.0'
2424

2525
buildscript {
2626
repositories {

sdk/gradlew

100644100755
File mode changed.

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.2.0");
97+
addDefaultHeader("x-aspose-client-version", "25.3.0");
9898

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

sdk/src/test/java/com/aspose/asposecloudpdfandroid/api/ImagesTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ public void getImageExtractAsPngTest() throws ApiException
476476
@Test
477477
public void getImageExtractAsSvgTest() throws ApiException
478478
{
479-
final String name = "Alfa.pdf";
479+
final String name = "alfa.pdf";
480480
th.uploadFile(name);
481481

482482
int pageNumber = 1;

sdk/src/test/java/com/aspose/asposecloudpdfandroid/api/TestHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class TestHelper {
1515
public static PdfApi pdfApi;
1616
public static String tempFolder = "TempPdfCloud";
1717
public static String testDataFolder = "testData";
18-
public static String setupFile = "..\\..\\..\\Settings\\servercreds.json";
18+
public static String setupFile = "../../Settings/servercreds.json";
1919

2020
class ApiCreds{
2121
public Boolean SelfHost = false;

0 commit comments

Comments
 (0)