Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- buildscript {
- repositories {
- maven { url 'https://maven.fabric.io/public' }
- }
- dependencies {
- classpath 'io.fabric.tools:gradle:1.+'
- }
- }
- apply plugin: 'com.android.application'
- apply plugin: 'io.fabric'
- repositories {
- maven { url 'https://maven.fabric.io/public' }
- }
- def GooglePlayServices = '8.3.0'
- android {
- compileSdkVersion 23
- buildToolsVersion "23.0.3"
- defaultConfig {
- applicationId "com.huy.pesda"
- minSdkVersion 16
- targetSdkVersion 23
- versionCode 1
- versionName "1.0"
- }
- signingConfigs {
- release {
- storeFile file('key.jks')
- storePassword 'Pesda'
- keyAlias 'Pesda'
- keyPassword 'Pesda'
- }
- }
- buildTypes {
- debug {
- signingConfig signingConfigs.release
- minifyEnabled false
- }
- release {
- signingConfig signingConfigs.release
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- compile fileTree(dir: 'libs', include: ['*.jar'])
- testCompile 'junit:junit:4.12'
- compile('com.crashlytics.sdk.android:crashlytics:2.5.5@aar') {
- transitive = true;
- }
- compile 'com.android.support:appcompat-v7:23.2.1'
- compile 'com.squareup.retrofit2:retrofit:2.0.1'
- compile 'com.squareup.retrofit2:converter-gson:2.0.1'
- compile 'com.jakewharton:butterknife:7.0.1'
- compile 'net.danlew:android.joda:2.9.3'
- compile 'com.google.android.gms:play-services-analytics:9.0.0'
- compile 'com.google.android.gms:play-services-location:9.0.0'
- compile 'com.google.android.gms:play-services-maps:9.0.0'
- compile 'org.apache.commons:commons-io:1.3.2'
- compile "com.google.firebase:firebase-messaging:9.0.0"
- compile('com.mikepenz:materialdrawer:5.2.6@aar') {
- transitive = true
- }
- compile 'com.mikepenz:itemanimators:0.2.4@aar'
- compile 'com.mikepenz:fontawesome-typeface:4.4.0.1@aar'
- }
- apply plugin: 'com.google.gms.google-services'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement