mirror of
https://github.com/Xtao-Labs/FirebaseCloudMessaging-Android.git
synced 2025-02-07 02:48:47 +00:00
30 lines
626 B
Groovy
30 lines
626 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 25
|
|
buildToolsVersion "25.0.1"
|
|
|
|
defaultConfig {
|
|
applicationId "com.example.fcm"
|
|
minSdkVersion 17
|
|
targetSdkVersion 25
|
|
versionCode 1
|
|
versionName "1.0"
|
|
resConfigs("en", "th")
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
compile 'com.android.support:appcompat-v7:25.0.1'
|
|
compile 'com.google.firebase:firebase-messaging:10.0.1'
|
|
}
|
|
|
|
apply plugin: 'com.google.gms.google-services' |