Replace deprecated 'compile' gradle configuration with 'implementation' (#1477)

This commit is contained in:
Hyo Chan Jang
2019-01-16 01:08:00 +09:00
committed by Yuri Kulikov
parent 7767d2e373
commit ac51cf6511

View File

@@ -26,6 +26,6 @@ android {
}
dependencies {
compile "com.facebook.react:react-native:+"
compile 'com.nimbusds:nimbus-jose-jwt:5.1'
}
implementation "com.facebook.react:react-native:+"
implementation 'com.nimbusds:nimbus-jose-jwt:5.1'
}