22 lines
534 B
Groovy
22 lines
534 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion 24
|
|
buildToolsVersion "23.0.1"
|
|
|
|
defaultConfig {
|
|
minSdkVersion 18
|
|
targetSdkVersion 23
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile 'com.facebook.react:react-native:+'
|
|
compile 'com.instabug.library:instabug:3+'
|
|
compile 'com.github.ericwlange:AndroidJSCore:3.0.1'
|
|
compile 'status-im:function:0.0.1'
|
|
compile(group: 'status-im', name: 'status-go', version: 'develop-gb7fb51d9', ext: 'aar')
|
|
}
|