73 lines
2.0 KiB
Groovy
73 lines
2.0 KiB
Groovy
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'
|
|
apply plugin: 'com.google.gms.google-services'
|
|
|
|
android {
|
|
compileSdkVersion 25
|
|
buildToolsVersion '25.0.0'
|
|
|
|
defaultConfig {
|
|
applicationId "org.deke.risk.riskahead"
|
|
minSdkVersion 15
|
|
targetSdkVersion 23
|
|
versionCode 35
|
|
versionName "2.1.1"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
shrinkResources true
|
|
debuggable false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
debug {
|
|
debuggable true
|
|
}
|
|
}
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
jcenter()
|
|
maven { url 'https://maven.fabric.io/public' }
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: 'Parse-*.jar')
|
|
compile 'com.facebook.android:facebook-android-sdk:4.8.1'
|
|
compile('com.twitter.sdk.android:twitter-core:1.4.1@aar') {
|
|
transitive = true;
|
|
}
|
|
compile 'com.mikepenz:iconics-core:2.8.2@aar'
|
|
compile 'com.mikepenz:google-material-typeface:3.0.1.0.original@aar'
|
|
compile('com.mikepenz:materialdrawer:5.9.0@aar') {
|
|
transitive = true
|
|
}
|
|
|
|
compile 'com.android.support:appcompat-v7:25.3.1'
|
|
compile 'com.android.support:support-v4:25.3.1'
|
|
compile 'com.android.support:design:25.3.1'
|
|
|
|
compile 'com.google.android.gms:play-services-gcm:10.2.1'
|
|
compile 'com.google.android.gms:play-services-plus:10.2.1'
|
|
compile 'com.google.android.gms:play-services-location:10.2.1'
|
|
compile 'com.google.android.gms:play-services-ads:10.2.1'
|
|
compile 'com.google.android.gms:play-services-maps:10.2.1'
|
|
compile 'com.google.maps.android:android-maps-utils:0.5'
|
|
|
|
compile 'com.google.code.gson:gson:2.7'
|
|
compile 'com.beardedhen:androidbootstrap:2.3.1'
|
|
compile 'com.mcxiaoke.volley:library:1.0.19'
|
|
}
|