mirror of
https://github.com/zhigang1992/react-native-notifications.git
synced 2026-06-15 18:38:06 +08:00
30 lines
708 B
Groovy
30 lines
708 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion 27
|
|
buildToolsVersion '28.0.0'
|
|
|
|
defaultConfig {
|
|
minSdkVersion 19
|
|
targetSdkVersion 27
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
dependencies {
|
|
implementation "com.google.firebase:firebase-messaging:17.3.0"
|
|
implementation 'com.facebook.react:react-native:+'
|
|
|
|
testImplementation 'junit:junit:4.12'
|
|
testImplementation 'org.mockito:mockito-core:2.+'
|
|
testImplementation 'org.robolectric:robolectric:3.1.4'
|
|
}
|