FirebaseCloudMessaging-Android/app/build.gradle
Jirawat Karanwittayakarn 45b361d9f4 Firebase 10.0.1
2016-12-02 10:43:53 +07:00

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'