Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- plugins {
- id("com.android.application")
- id("kotlin-android")
- id("kotlin-android-extensions")
- }
- android {
- compileSdkVersion = 30
- buildToolsVersion = "29.0.3"
- buildFeatures {
- dataBinding true
- }
- defaultConfig {
- buildConfigField 'boolean', 'ENABLE_ANALYTICS', 'true'
- applicationIdSuffix '.dev'
- minSdkVersion 21
- targetSdkVersion 30
- applicationIdSuffix '.dev'
- resConfigs("en", "xxhdpi")
- versionCode = 1
- renderscriptSupportModeEnabled true
- multiDexEnabled true
- versionName "1.0"
- vectorDrawables.useSupportLibrary = true
- testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
- }
- buildTypes {
- release {
- ext.alwaysUpdateBuildId = false
- minifyEnabled = false
- crunchPngs false
- proguardFiles(getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro")
- }
- }
- compileOptions {
- sourceCompatibility = JavaVersion.VERSION_1_8
- targetCompatibility = JavaVersion.VERSION_1_8
- }
- android {
- packagingOptions {
- exclude 'META-INF/proguard/androidx-annotations.pro'
- }
- }
- android {
- dexOptions {
- jumboMode = true
- }
- }
- dependencies {
- //implementation("javax.xml.bind:jaxb-api:2.3.1")
- //implementation fileTree(include: ['*.jar'], dir: 'libs')
- //noinspection GradleCompatible
- implementation 'com.android.support:appcompat-v7:29.0.0'
- implementation 'com.android.support:design:30.0.0'
- //implementation 'com.android.support:cardview-v7:29.0.0'
- implementation 'androidx.cardview:cardview:1.0.0'
- //implementation 'com.android.support:recyclerview-v7:29.0.0'
- implementation "androidx.recyclerview:recyclerview:1.2.0-alpha05"
- implementation "androidx.recyclerview:recyclerview-selection:1.1.0-rc01"
- implementation 'com.android.support:customtabs:30.0.0'
- implementation 'com.android.support:support-vector-drawable:30.0.0'
- implementation 'com.android.support:support-v4:30.0.0'
- implementation "com.android.support:support-core-utils:30.0.0"
- implementation "com.android.support:support-fragment:30.0.0"
- implementation 'com.android.support.constraint:constraint-layout:1.1.3'
- //implementation 'com.android.support:multidex:1.0.3'
- implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
- implementation 'com.google.android.gms:play-services-maps:17.0.0'
- implementation 'com.google.android.gms:play-services-location:17.0.0'
- implementation 'com.google.android.gms:play-services-places:17.0.0'
- implementation 'com.google.android.gms:play-services-vision-image-label:18.0.4'
- implementation 'android.arch.navigation:navigation-runtime-ktx:1.0.0'
- implementation 'com.google.android.gms:play-services-identity:17.0.0'
- implementation 'com.lapism:searchview:4.0'
- //implementation 'com.jakewharton.timber:timber:4.6.0'
- api 'com.android.support:design:30.0.0'
- implementation group: 'javax.xml.bind', name: 'jaxb-api', version: '2.3.1'
- implementation('com.mikepenz:materialdrawer:5.9.5@aar') {
- transitive = true
- // AndroidJUnitRunner and JUnit Rules
- androidTestImplementation 'com.android.support.test:runner:1.0.2'
- androidTestImplementation 'com.android.support.test:rules:1.0.2'
- // Espresso dependencies
- androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
- androidTestImplementation 'com.android.support.test.espresso:espresso-contrib:3.0.2'
- androidTestImplementation 'com.android.support.test.espresso:espresso-intents:3.0.2'
- androidTestImplementation 'com.android.support.test.espresso:espresso-accessibility:3.0.2'
- androidTestImplementation 'com.android.support.test.espresso.idling:idling-concurrent:3.0.2'
- androidTestImplementation 'com.android.support.test.espresso:espresso-idling-resource:3.0.2'
- testImplementation("junit:junit:4.12")
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement