50 lines
1.5 KiB
Groovy
50 lines
1.5 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'com.google.gms.google-services'
|
|
|
|
android {
|
|
compileSdkVersion 23
|
|
buildToolsVersion "23.0.3"
|
|
|
|
defaultConfig {
|
|
applicationId "com.hikapro.backpack"
|
|
minSdkVersion 17
|
|
targetSdkVersion 23
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
shrinkResources true
|
|
// minifyEnabled true
|
|
// proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
minifyEnabled false
|
|
}
|
|
}
|
|
lintOptions {
|
|
checkReleaseBuilds false
|
|
abortOnError false
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
testCompile 'junit:junit:4.12'
|
|
compile 'com.google.code.gson:gson:2.6.2'
|
|
compile 'com.squareup.retrofit2:retrofit:2.0.1'
|
|
compile 'com.squareup.retrofit2:converter-gson:2.0.1'
|
|
compile 'com.squareup.okhttp3:okhttp:3.2.0'
|
|
compile 'com.squareup.okhttp:logging-interceptor:2.7.0'
|
|
compile 'com.android.support:support-v4:23.3.0'
|
|
compile 'com.android.support:appcompat-v7:23.3.0'
|
|
compile 'com.android.support:design:23.3.0'
|
|
compile 'com.android.support:cardview-v7:23.3.0'
|
|
compile 'com.facebook.android:facebook-android-sdk:4.11.0'
|
|
compile 'com.google.android.gms:play-services-analytics:9.0.0'
|
|
compile files('libs/socialauth-4.4.jar')
|
|
compile files('libs/socialauth-android-3.2.jar')
|
|
}
|