2015-10-22 15:35:22 +00:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
android {
|
2017-04-06 18:07:16 +00:00
|
|
|
compileSdkVersion 25
|
|
|
|
buildToolsVersion "25.0.2"
|
2015-10-22 15:35:22 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 16
|
|
|
|
targetSdkVersion 22
|
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
2017-04-06 18:07:16 +00:00
|
|
|
ndk {
|
|
|
|
abiFilters "armeabi-v7a", "x86"
|
|
|
|
}
|
2015-10-22 15:35:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2017-01-27 12:13:34 +00:00
|
|
|
compile 'com.facebook.react:react-native:+'
|
2017-03-08 21:41:11 +00:00
|
|
|
}
|