Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- apply plugin: 'com.android.application'
- apply plugin: 'com.google.gms.google-services'
- apply plugin: 'com.jakewharton.butterknife'
- android {
- compileSdkVersion 27
- buildToolsVersion '27.0.3'
- flavorDimensions "default"
- dataBinding {
- enabled = true
- }
- defaultConfig {
- minSdkVersion 14
- targetSdkVersion 27
- versionCode 17
- versionName "4.9"
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- applicationVariants.all { variant ->
- variant.outputs.all { output ->
- outputFileName = new File(
- output.outputFile.parent,
- output.outputFile.name.replace(".apk", "-${variant.versionName}-18.apk"))
- }
- }
- dexOptions {
- incremental true
- javaMaxHeapSize "1g"
- }
- buildTypes {
- release {
- minifyEnabled false
- debuggable false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- productFlavors {
- ...
- }
- dependencies {
- compile fileTree(include: ['*.jar'], dir: 'libs')
- testCompile 'junit:junit:4.12'
- compile 'com.android.support:appcompat-v7:27.1.1'
- compile 'com.android.support:design:27.1.1'
- compile 'com.android.support:cardview-v7:27.1.1'
- compile 'com.android.support:support-v13:27.1.1'
- compile 'com.android.support.constraint:constraint-layout:1.1.0'
- compile 'com.bignerdranch.android:expandablerecyclerview:2.1.0'
- compile 'com.wdullaer:materialdatetimepicker:1.5.4'
- compile 'com.squareup.okhttp3:okhttp:3.0.1'
- compile 'com.j256.ormlite:ormlite-core:4.48'
- compile 'com.j256.ormlite:ormlite-android:4.48'
- compile 'com.github.rahatarmanahmed:circularprogressview:2.4.0'
- compile project(':app:libs:maskededittext')
- compile 'com.github.JakeWharton:ViewPagerIndicator:2.4.1@aar'
- compile 'com.yandex.android:mobmetricalib:2.40'
- compile 'com.google.android.gms:play-services-analytics:9.0.0'
- compile 'net.yslibrary.keyboardvisibilityevent:keyboardvisibilityevent:2.1.0'
- compile 'ru.tinkoff.decoro:decoro:1.3.1'
- compile 'com.github.dmytrodanylyk.shadow-layout:library:1.0.3'
- compile 'net.danlew:android.joda:2.9.9'
- compile 'org.greenrobot:eventbus:3.0.0'
- compile project(':gestureimageview')
- compile 'com.nhaarman.supertooltips:library:3.0.0'
- implementation 'com.jakewharton:butterknife:8.4.0'
- annotationProcessor 'com.jakewharton:butterknife-compiler:8.4.0'
- compile 'com.github.bumptech.glide:glide:4.6.1'
- annotationProcessor 'com.github.bumptech.glide:compiler:4.6.1'
- compile 'com.readystatesoftware.systembartint:systembartint:1.0.3'
- compile 'com.ms-square:expandableTextView:0.1.4'
- implementation 'com.veinhorn.scrollgalleryview:library:1.0.8'
- //compile 'cat.ereza:customactivityoncrash:2.1.0'
- implementation "ch.acra:acra-mail:5.1.3"
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement