mirror of https://github.com/laurent22/joplin.git
Tools: Fixed Android build
parent
6bbf053a4f
commit
6361ae3736
|
@ -215,6 +215,16 @@ android {
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// To fix this error:
|
||||||
|
//
|
||||||
|
// > Execution failed for task ':app:lintVitalRelease'
|
||||||
|
//
|
||||||
|
// https://stackoverflow.com/a/62603296/561309
|
||||||
|
lintOptions {
|
||||||
|
disable 'InvalidPackage'
|
||||||
|
checkReleaseBuilds false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|
|
@ -27,3 +27,10 @@ android.enableJetifier=true
|
||||||
|
|
||||||
# Version of flipper SDK to use with React Native
|
# Version of flipper SDK to use with React Native
|
||||||
FLIPPER_VERSION=0.99.0
|
FLIPPER_VERSION=0.99.0
|
||||||
|
|
||||||
|
# To fix this error:
|
||||||
|
#
|
||||||
|
# > Failed to transform bcprov-jdk15on-1.68.jar
|
||||||
|
#
|
||||||
|
# https://github.com/robolectric/robolectric/issues/6521
|
||||||
|
android.jetifier.ignorelist=bcprov
|
||||||
|
|
Loading…
Reference in New Issue