Advertisement
zihadrizkyef

build.gradle (app)

Nov 22nd, 2016
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.25 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4.     compileSdkVersion 25
  5.     buildToolsVersion "24.0.2"
  6.     defaultConfig {
  7.         applicationId "com.zihadrizkyef.belajar_facebooklogin"
  8.         minSdkVersion 19
  9.         targetSdkVersion 25
  10.         versionCode 1
  11.         versionName "1.0"
  12.         testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  13.         multiDexEnabled true
  14.     }
  15.     buildTypes {
  16.         release {
  17.             minifyEnabled false
  18.             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  19.         }
  20.     }
  21. }
  22.  
  23. dependencies {
  24.     compile fileTree(dir: 'libs', include: ['*.jar'])
  25.     androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  26.         exclude group: 'com.android.support', module: 'support-annotations'
  27.     })
  28.     compile 'com.android.support:multidex:1.0.1'
  29.     compile 'com.android.support:appcompat-v7:25.0.1'
  30.     compile ('com.google.firebase:firebase-core:10.0.0'){
  31.         exclude group: 'com.google.android.gms'
  32.     }
  33.     compile 'com.google.firebase:firebase-auth:9.8.0'
  34.     compile 'com.facebook.android:facebook-android-sdk:[4,5)'
  35.     testCompile 'junit:junit:4.12'
  36. }
  37.  
  38. apply plugin: 'com.google.gms.google-services'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement