Skip to content

Commit 1d10adf

Browse files
committed
Use version-agnostic SDK jar dependency in android tests
1 parent 6d99481 commit 1d10adf

2 files changed

Lines changed: 11 additions & 2 deletions

File tree

android-test/build.gradle

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,14 @@ android {
4040
}
4141

4242
dependencies {
43-
implementation files('../target/aspose-barcode-cloud-26.3.0.jar')
43+
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+
)
4451
implementation 'com.google.code.gson:gson:2.13.2'
4552
implementation 'io.gsonfire:gson-fire:1.9.0'
4653
implementation 'com.squareup.okhttp3:okhttp:5.3.2'
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest />
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
3+
<uses-permission android:name="android.permission.INTERNET" />
4+
</manifest>

0 commit comments

Comments
 (0)