Files
react-native-notifications/android/build.gradle
2019-07-27 22:28:01 +03:00

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'
}