Skip to content

Commit 4ff7c06

Browse files
committed
Release Aspose.Cells Cloud SDK 22.11
1 parent fdb0a4c commit 4ff7c06

File tree

4 files changed

+423
-6
lines changed

4 files changed

+423
-6
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ Android Cloud SDK wraps Aspose.Cells Cloud API. The SDK enhances your Android ap
2121
- Leverage the power of named ranges.
2222

2323

24-
## Feature & Enhancements in Version 22.10
24+
## Feature & Enhancements in Version 22.11
2525

26-
- Add api for converting workbook to pptx.
27-
- Add api for converting workbook to html.
28-
- Add api for converting workbook to markdown.
26+
- Add api for converting workbook to json.
27+
- Add api for converting workbook to sql.
28+
- Add api for converting workbook to csv.
2929

3030
## Read & Write Spreadsheet Formats
3131

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group = 'com.aspose'
2-
project.version = '22.10'
2+
project.version = '22.11'
33

44
buildscript {
55
repositories {

src/androidTest/java/com/aspose/cloud/cells/api/CellsConvertApiTest.java

+15
Original file line numberDiff line numberDiff line change
@@ -84,4 +84,19 @@ public void cellsConvertDocxApiTest() throws ApiException {
8484
// TODO: test validations
8585
}
8686

87+
@Test
88+
public void cellsConvertJsonApiTest() throws ApiException {
89+
90+
FileInfo response = api.postConvertWorkbookToJson(CellsApiUtil.GetFileHolder(AssemblyTestXlsx) ,null,null);
91+
92+
// TODO: test validations
93+
}
94+
95+
@Test
96+
public void cellsConvertSQLApiTest() throws ApiException {
97+
98+
FileInfo response = api.postConvertWorkbookToSQL(CellsApiUtil.GetFileHolder(AssemblyTestXlsx) ,null,null);
99+
100+
// TODO: test validations
101+
}
87102
}

0 commit comments

Comments
 (0)