25 lines
535 B
Groovy
Raw Normal View History

2016-04-10 22:42:32 -04:00
apply plugin: 'com.android.library'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
minSdkVersion 16
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile 'com.facebook.react:react-native:0.20.1'
compile 'testfairy:testfairy-android-sdk:1.4.13'
2016-04-10 22:42:32 -04:00
}