Skip to content

Commit 3dd9d17

Browse files
committed
Introduce 20.4 Aspose OCR Cloud Android SDK
1 parent 671531a commit 3dd9d17

File tree

86 files changed

+6416
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+6416
-1
lines changed

.gitignore

Lines changed: 226 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,229 @@
1+
destTest/**
2+
3+
# Created by https://www.gitignore.io/api/java,android,androidstudio
4+
# Edit at https://www.gitignore.io/?templates=java,android,androidstudio
5+
6+
### Android ###
7+
# Built application files
8+
*.apk
9+
*.ap_
10+
*.aab
11+
12+
# Files for the ART/Dalvik VM
13+
*.dex
14+
15+
# Java class files
16+
*.class
17+
18+
# Generated files
19+
bin/
20+
gen/
21+
out/
22+
release/
23+
24+
# Gradle files
25+
.gradle/
26+
build/
27+
28+
# Local configuration file (sdk path, etc)
29+
local.properties
30+
31+
# Proguard folder generated by Eclipse
32+
proguard/
33+
34+
# Log Files
35+
*.log
36+
37+
# Android Studio Navigation editor temp files
38+
.navigation/
39+
40+
# Android Studio captures folder
41+
captures/
42+
43+
# IntelliJ
44+
*.iml
45+
.idea/workspace.xml
46+
.idea/tasks.xml
47+
.idea/gradle.xml
48+
.idea/assetWizardSettings.xml
49+
.idea/dictionaries
50+
.idea/libraries
51+
# Android Studio 3 in .gitignore file.
52+
.idea/caches
53+
.idea/modules.xml
54+
# Comment next line if keeping position of elements in Navigation Editor is relevant for you
55+
.idea/navEditor.xml
56+
57+
# Keystore files
58+
# Uncomment the following lines if you do not want to check your keystore files in.
59+
#*.jks
60+
#*.keystore
61+
62+
# External native build folder generated in Android Studio 2.2 and later
63+
.externalNativeBuild
64+
65+
# Google Services (e.g. APIs or Firebase)
66+
# google-services.json
67+
68+
# Freeline
69+
freeline.py
70+
freeline/
71+
freeline_project_description.json
72+
73+
# fastlane
74+
fastlane/report.xml
75+
fastlane/Preview.html
76+
fastlane/screenshots
77+
fastlane/test_output
78+
fastlane/readme.md
79+
80+
# Version control
81+
vcs.xml
82+
83+
# lint
84+
lint/intermediates/
85+
lint/generated/
86+
lint/outputs/
87+
lint/tmp/
88+
# lint/reports/
89+
90+
### Android Patch ###
91+
gen-external-apklibs
92+
output.json
93+
94+
# Replacement of .externalNativeBuild directories introduced
95+
# with Android Studio 3.5.
96+
.cxx/
97+
98+
### Java ###
99+
# Compiled class file
100+
101+
# Log file
102+
103+
# BlueJ files
104+
*.ctxt
105+
106+
# Mobile Tools for Java (J2ME)
107+
.mtj.tmp/
108+
109+
# Package Files #
110+
*.jar
111+
*.war
112+
*.nar
113+
*.ear
114+
*.zip
115+
*.tar.gz
116+
*.rar
117+
118+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
119+
hs_err_pid*
120+
121+
### AndroidStudio ###
122+
# Covers files to be ignored for android development using Android Studio.
123+
124+
# Built application files
125+
126+
# Files for the ART/Dalvik VM
127+
128+
# Java class files
129+
130+
# Generated files
131+
132+
# Gradle files
133+
.gradle
134+
135+
# Signing files
136+
.signing/
137+
138+
# Local configuration file (sdk path, etc)
139+
140+
# Proguard folder generated by Eclipse
141+
142+
# Log Files
143+
144+
# Android Studio
145+
/*/build/
146+
/*/local.properties
147+
/*/out
148+
/*/*/build
149+
/*/*/production
150+
*.ipr
151+
*~
152+
*.swp
153+
154+
# Android Patch
155+
156+
# External native build folder generated in Android Studio 2.2 and later
157+
158+
# NDK
159+
obj/
160+
161+
# IntelliJ IDEA
162+
*.iws
163+
/out/
164+
165+
# User-specific configurations
166+
.idea/caches/
167+
.idea/libraries/
168+
.idea/shelf/
169+
.idea/.name
170+
.idea/compiler.xml
171+
.idea/copyright/profiles_settings.xml
172+
.idea/encodings.xml
173+
.idea/misc.xml
174+
.idea/scopes/scope_settings.xml
175+
.idea/vcs.xml
176+
.idea/jsLibraryMappings.xml
177+
.idea/datasources.xml
178+
.idea/dataSources.ids
179+
.idea/sqlDataSources.xml
180+
.idea/dynamic.xml
181+
.idea/uiDesigner.xml
182+
183+
# OS-specific files
184+
.DS_Store
185+
.DS_Store?
186+
._*
187+
.Spotlight-V100
188+
.Trashes
189+
ehthumbs.db
190+
Thumbs.db
191+
192+
# Legacy Eclipse project files
193+
.classpath
194+
.project
195+
.cproject
196+
.settings/
197+
198+
# Mobile Tools for Java (J2ME)
199+
200+
# Package Files #
201+
202+
# virtual machine crash logs (Reference: http://www.java.com/en/download/help/error_hotspot.xml)
203+
204+
## Plugin-specific files:
205+
206+
# mpeltonen/sbt-idea plugin
207+
.idea_modules/
208+
209+
# JIRA plugin
210+
atlassian-ide-plugin.xml
211+
212+
# Mongo Explorer plugin
213+
.idea/mongoSettings.xml
214+
215+
# Crashlytics plugin (for Android Studio and IntelliJ)
216+
com_crashlytics_export_strings.xml
217+
crashlytics.properties
218+
crashlytics-build.properties
219+
fabric.properties
220+
221+
### AndroidStudio Patch ###
222+
223+
!/gradle/wrapper/gradle-wrapper.jar
224+
225+
# End of https://www.gitignore.io/api/java,android,androidstudio
226+
1227
# Built application files
2228
*.apk
3229
*.aar

.idea/codeStyles/Project.xml

Lines changed: 116 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)