Skip to content

Commit 1cf005d

Browse files
Add README.md to aar-instrumented-tester
1 parent 3695751 commit 1cf005d

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

aar-instrumented-tester/README.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
## Run unit tests on released AAR
2+
3+
Copy unit tests and other required files from main project
4+
```sh
5+
./copyFilesFromMainProject.sh
6+
```
7+
8+
Add a dependency to released AAR in [aar-instrumented-tester/pdf2htmlEX/build.gradle](aar-instrumented-tester/pdf2htmlEX/build.gradle)
9+
```Groovy
10+
dependencies {
11+
...
12+
implementation 'com.viliussutkus89:pdf2htmlex-android:0.18.3'
13+
...
14+
}
15+
```
16+
17+
Local .aar file can be used to, but it needs a complete list of dependencies
18+
```Groovy
19+
...
20+
files('libs/pdf2htmlex-android-release.aar')
21+
implementation 'com.viliussutkus89:tmpfile-android:1.0.2'
22+
...
23+
```

0 commit comments

Comments
 (0)