Advertisement
Guest User

Untitled

a guest
May 27th, 2016
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 1.80 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. apply plugin: 'com.google.gms.google-services'
  14.  
  15. repositories {
  16.     maven { url 'https://maven.fabric.io/public' }
  17. }
  18.  
  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.     buildTypes {
  34.         release {
  35.             minifyEnabled false
  36.             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  37.         }
  38.     }
  39. }
  40.  
  41. dependencies {
  42.     compile fileTree(dir: 'libs', include: ['*.jar'])
  43.     testCompile 'junit:junit:4.12'
  44.     compile('com.crashlytics.sdk.android:crashlytics:2.5.5@aar') {
  45.         transitive = true;
  46.     }
  47.     compile files('libs/live2d_android.jar')
  48.     compile 'com.android.support:appcompat-v7:23.2.1'
  49.     compile 'com.squareup.retrofit2:retrofit:2.0.1'
  50.     compile 'com.squareup.retrofit2:converter-gson:2.0.1'
  51.     compile 'com.jakewharton:butterknife:7.0.1'
  52.     compile 'net.danlew:android.joda:2.9.3'
  53.     compile 'com.google.android.gms:play-services-analytics:9.0.0'
  54.     compile 'com.google.android.gms:play-services-location:9.0.0'
  55.     compile 'com.google.android.gms:play-services-maps:9.0.0'
  56.     compile 'org.apache.commons:commons-io:1.3.2'
  57.     compile "com.google.firebase:firebase-messaging:9.0.0"
  58.     compile('com.mikepenz:materialdrawer:5.2.6@aar') {
  59.         transitive = true
  60.     }
  61.     compile 'com.mikepenz:itemanimators:0.2.4@aar'
  62.     compile 'com.mikepenz:fontawesome-typeface:4.4.0.1@aar'
  63. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement