Advertisement
Guest User

Untitled

a guest
May 25th, 2016
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 2.13 KB | None | 0 0
  1. buildscript {
  2.     repositories {
  3.         maven { url 'https://maven.fabric.io/public' }
  4.     }
  5.  
  6.     dependencies {
  7.         classpath 'io.fabric.tools:gradle:1.+'
  8.  
  9.     }
  10. }
  11. apply plugin: 'com.android.application'
  12. apply plugin: 'io.fabric'
  13.  
  14. repositories {
  15.     maven { url 'https://maven.fabric.io/public' }
  16. }
  17.  
  18. def GooglePlayServices = '8.3.0'
  19.  
  20. android {
  21.     compileSdkVersion 23
  22.     buildToolsVersion "23.0.3"
  23.  
  24.     defaultConfig {
  25.         applicationId "com.huy.pesda"
  26.         minSdkVersion 16
  27.         targetSdkVersion 23
  28.         versionCode 1
  29.         versionName "1.0"
  30.  
  31.     }
  32.  
  33.     signingConfigs {
  34.         release {
  35.             storeFile file('key.jks')
  36.             storePassword 'Pesda'
  37.             keyAlias 'Pesda'
  38.             keyPassword 'Pesda'
  39.         }
  40.     }
  41.  
  42.     buildTypes {
  43.         debug {
  44.             signingConfig signingConfigs.release
  45.             minifyEnabled false
  46.         }
  47.         release {
  48.             signingConfig signingConfigs.release
  49.             minifyEnabled false
  50.             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  51.         }
  52.     }
  53. }
  54.  
  55. dependencies {
  56.     compile fileTree(dir: 'libs', include: ['*.jar'])
  57.     testCompile 'junit:junit:4.12'
  58.     compile('com.crashlytics.sdk.android:crashlytics:2.5.5@aar') {
  59.         transitive = true;
  60.     }
  61.     compile 'com.android.support:appcompat-v7:23.2.1'
  62.     compile 'com.squareup.retrofit2:retrofit:2.0.1'
  63.     compile 'com.squareup.retrofit2:converter-gson:2.0.1'
  64.     compile 'com.jakewharton:butterknife:7.0.1'
  65.     compile 'net.danlew:android.joda:2.9.3'
  66.     compile 'com.google.android.gms:play-services-analytics:9.0.0'
  67.     compile 'com.google.android.gms:play-services-location:9.0.0'
  68.     compile 'com.google.android.gms:play-services-maps:9.0.0'
  69.     compile 'org.apache.commons:commons-io:1.3.2'
  70.     compile "com.google.firebase:firebase-messaging:9.0.0"
  71.     compile('com.mikepenz:materialdrawer:5.2.6@aar') {
  72.         transitive = true
  73.     }
  74.     compile 'com.mikepenz:itemanimators:0.2.4@aar'
  75.     compile 'com.mikepenz:fontawesome-typeface:4.4.0.1@aar'
  76. }
  77. apply plugin: 'com.google.gms.google-services'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement