Created
February 20, 2016 17:52
-
-
Save burnix/dc69fb2c03fbbe8e67d5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' } | |
} | |
apply plugin: 'com.google.gms.google-services' | |
android { | |
compileSdkVersion 23 | |
buildToolsVersion "23.0.2" | |
defaultConfig { | |
applicationId "be.motti.tort" | |
minSdkVersion 15 | |
targetSdkVersion 23 | |
versionCode 1 | |
versionName "1.0" | |
multiDexEnabled true | |
} | |
buildTypes { | |
release { | |
minifyEnabled false | |
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | |
} | |
} | |
dexOptions { | |
incremental true | |
javaMaxHeapSize "4g" | |
} | |
} | |
dependencies { | |
compile fileTree(dir: 'libs', include: ['*.jar']) | |
testCompile 'junit:junit:4.12' | |
compile 'com.android.support:appcompat-v7:23.1.1' | |
compile 'com.android.support:design:23.1.1' | |
compile 'com.android.support:support-v4:23.1.1' | |
compile 'com.android.support:recyclerview-v7:23.1.1' | |
compile 'com.ogaclejapan.smarttablayout:library:1.6.0@aar' | |
compile 'com.ogaclejapan.smarttablayout:utils-v4:1.6.0@aar' | |
compile 'com.squareup.okhttp3:okhttp:3.0.1' | |
compile 'com.squareup.picasso:picasso:2.5.2' | |
compile 'com.google.android.gms:play-services-ads:8.3.0' | |
compile 'com.google.android.gms:play-services-analytics:8.3.0' | |
compile 'com.google.android.gms:play-services-gcm:8.3.0' | |
compile('com.crashlytics.sdk.android:crashlytics:2.5.5@aar') { | |
transitive = true; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment