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'