49 lines
1.9 KiB
Groovy
49 lines
1.9 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 25
|
|
buildToolsVersion "25.0.2"
|
|
defaultConfig {
|
|
applicationId "ch.pizzalink.android"
|
|
minSdkVersion 14
|
|
targetSdkVersion 25
|
|
versionCode 1
|
|
versionName "1.0"
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
})
|
|
compile 'com.android.support:appcompat-v7:25.3.1'
|
|
compile 'com.android.support.constraint:constraint-layout:1.0.2'
|
|
compile 'com.android.support:recyclerview-v7:25.3.1'
|
|
compile 'com.android.support:cardview-v7:25.3.1'
|
|
compile 'com.google.android.gms:play-services-maps:11.0.4'
|
|
compile 'com.google.android.gms:play-services-location:11.0.4'
|
|
compile 'com.squareup.picasso:picasso:2.5.2'
|
|
compile 'com.squareup.retrofit2:retrofit:2.1.0'
|
|
compile 'com.squareup.retrofit2:converter-gson:2.0.0'
|
|
compile 'com.squareup.okhttp3:okhttp:3.5.0'
|
|
compile 'uk.co.chrisjenx:calligraphy:2.2.0'
|
|
compile 'com.jakewharton:butterknife:8.5.1'
|
|
compile 'com.jakewharton.picasso:picasso2-okhttp3-downloader:1.1.0'
|
|
compile 'com.wdullaer:materialdatetimepicker:3.1.1'
|
|
compile 'com.github.ittianyu:BottomNavigationViewEx:1.1.3'
|
|
compile 'com.github.bumptech.glide:glide:3.7.0'
|
|
compile 'io.nlopez.smartlocation:library:3.3.1'
|
|
compile 'com.afollestad.material-dialogs:core:0.9.4.5'
|
|
compile 'com.github.AndroidDeveloperLB:DialogShard:3'
|
|
testCompile 'junit:junit:4.12'
|
|
annotationProcessor 'com.jakewharton:butterknife-compiler:8.5.1'
|
|
}
|