mirror of https://github.com/readrops/Readrops.git
Fix conflict to use gradle task connectedCheck
This commit is contained in:
parent
209070abd6
commit
b103ed3a01
|
@ -27,5 +27,5 @@ jobs:
|
|||
uses: ReactiveCircus/android-emulator-runner@v2.5.0
|
||||
with:
|
||||
api-level: 29
|
||||
script: ./gradlew app:connectedAndroidTest readropsdb:connectedAndroidTest
|
||||
script: ./gradlew connectedCheck
|
||||
|
||||
|
|
|
@ -39,6 +39,11 @@ dependencies {
|
|||
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||||
implementation project(':readropsdb')
|
||||
|
||||
// xpp3 has a conflict with kxml when running connectedCheck task
|
||||
configurations {
|
||||
all*.exclude group: 'xpp3', module: 'xpp3'
|
||||
}
|
||||
|
||||
implementation "androidx.core:core-ktx:1.2.0"
|
||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
||||
implementation 'androidx.appcompat:appcompat:1.1.0'
|
||||
|
|
Loading…
Reference in New Issue