Files
react-native-code-push/android/app/build.gradle
Sergey Akhalkov 32f82e6050 Fix dex index overflow exception (#1007)
fix DexIndexOverflowException due to com.auth0.jwt #1002

use another lib - nimbus-jose-jwt
2017-09-18 12:49:16 +03:00

26 lines
475 B
Groovy

apply plugin: "com.android.library"
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
minSdkVersion 16
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
lintOptions {
abortOnError false
}
defaultConfig {
consumerProguardFiles 'proguard-rules.pro'
}
}
dependencies {
compile "com.facebook.react:react-native:+"
compile 'com.nimbusds:nimbus-jose-jwt:5.1'
}