mirror of
https://github.com/zhigang1992/react-native-notifications.git
synced 2026-06-12 09:08:11 +08:00
31 lines
757 B
Groovy
31 lines
757 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion 27
|
|
buildToolsVersion '28.0.3'
|
|
|
|
defaultConfig {
|
|
minSdkVersion 19
|
|
targetSdkVersion 27
|
|
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:15.0.1'
|
|
compile "com.google.firebase:firebase-messaging:17.3.0"
|
|
compile 'com.facebook.react:react-native:+'
|
|
|
|
testCompile 'junit:junit:4.12'
|
|
testCompile 'org.mockito:mockito-core:2.+'
|
|
testCompile 'org.robolectric:robolectric:3.1.4'
|
|
}
|