80 lines
2.5 KiB
Groovy
80 lines
2.5 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'io.fabric'
|
|
|
|
android {
|
|
compileSdkVersion 27
|
|
buildToolsVersion '27.0.3'
|
|
|
|
defaultConfig {
|
|
applicationId "org.deke.risk.riskahead"
|
|
minSdkVersion 19
|
|
targetSdkVersion 26
|
|
versionCode 48
|
|
versionName "3.1.4"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
shrinkResources true
|
|
debuggable false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
debug {
|
|
debuggable true
|
|
}
|
|
}
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
jcenter()
|
|
maven { url 'https://maven.fabric.io/public' }
|
|
maven { url 'https://maven.google.com/' }
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: 'Parse-*.jar')
|
|
|
|
implementation 'com.facebook.android:facebook-android-sdk:4.31.0'
|
|
implementation('com.twitter.sdk.android:twitter-core:3.3.0@aar') {
|
|
transitive = true
|
|
}
|
|
|
|
implementation('com.crashlytics.sdk.android:crashlytics:2.9.4@aar') {
|
|
transitive = true
|
|
}
|
|
|
|
implementation 'com.mikepenz:iconics-core:3.0.3@aar'
|
|
implementation 'com.mikepenz:google-material-typeface:3.0.1.2.original@aar'
|
|
implementation('com.mikepenz:materialdrawer:6.0.6@aar') {
|
|
transitive = true
|
|
}
|
|
|
|
implementation 'com.android.support:customtabs:27.1.1'
|
|
implementation 'com.android.support:cardview-v7:27.1.1'
|
|
implementation 'com.android.support:appcompat-v7:27.1.1'
|
|
implementation 'com.android.support:support-v4:27.1.1'
|
|
implementation 'com.android.support:design:27.1.1'
|
|
|
|
implementation 'com.google.android.gms:play-services-auth:15.0.1'
|
|
implementation 'com.google.android.gms:play-services-gcm:15.0.1'
|
|
implementation 'com.google.android.gms:play-services-plus:15.0.1'
|
|
implementation 'com.google.android.gms:play-services-location:15.0.1'
|
|
implementation 'com.google.android.gms:play-services-ads:15.0.1'
|
|
implementation 'com.google.android.gms:play-services-maps:15.0.1'
|
|
|
|
implementation 'com.google.maps.android:android-maps-utils:0.5'
|
|
implementation 'com.google.code.gson:gson:2.8.0'
|
|
implementation 'com.beardedhen:androidbootstrap:2.3.2'
|
|
implementation 'com.mcxiaoke.volley:library:1.0.19'
|
|
implementation 'com.google.firebase:firebase-core:16.0.1'
|
|
}
|
|
|
|
apply plugin: 'com.google.gms.google-services'
|