We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d99481 commit 1d10adfCopy full SHA for 1d10adf
2 files changed
android-test/build.gradle
@@ -40,7 +40,14 @@ android {
40
}
41
42
dependencies {
43
- implementation files('../target/aspose-barcode-cloud-26.3.0.jar')
+ implementation fileTree(
44
+ dir: '../target',
45
+ include: ['aspose-barcode-cloud-*.jar'],
46
+ exclude: [
47
+ 'aspose-barcode-cloud-*-sources.jar',
48
+ 'aspose-barcode-cloud-*-javadoc.jar'
49
+ ]
50
+ )
51
implementation 'com.google.code.gson:gson:2.13.2'
52
implementation 'io.gsonfire:gson-fire:1.9.0'
53
implementation 'com.squareup.okhttp3:okhttp:5.3.2'
android-test/src/main/AndroidManifest.xml
@@ -1,2 +1,4 @@
1
<?xml version="1.0" encoding="utf-8"?>
2
-<manifest />
+<manifest xmlns:android="http://schemas.android.com/apk/res/android">
3
+ <uses-permission android:name="android.permission.INTERNET" />
4
+</manifest>
0 commit comments