Files
react-native-notifications/android/build.gradle
2017-01-09 18:21:42 +02:00

31 lines
692 B
Groovy

apply plugin: 'com.android.library'
android {
compileSdkVersion 23
buildToolsVersion "25"
defaultConfig {
minSdkVersion 16
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
// Google's GCM.
compile 'com.google.android.gms:play-services-gcm:10.0.1'
compile 'com.facebook.react:react-native:+'
testCompile 'junit:junit:4.12'
testCompile 'org.mockito:mockito-core:2.+'
testCompile 'org.robolectric:robolectric:3.1.4'
}