apply plugin: 'com.android.application' apply plugin: 'kotlin-android' apply plugin: 'kotlin-android-extensions' apply plugin: 'kotlin-kapt' android { compileSdkVersion 28 defaultConfig { applicationId "com.sduduzog.slimlauncher" minSdkVersion 21 targetSdkVersion 28 versionCode 19 versionName "2.0.3" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" vectorDrawables.useSupportLibrary = true } buildTypes { release { minifyEnabled true proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } debug { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') // Kotlin Libraries implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" // Support Libraries implementation 'androidx.appcompat:appcompat:1.0.2' implementation 'androidx.constraintlayout:constraintlayout:1.1.3' implementation 'androidx.cardview:cardview:1.0.0' implementation 'androidx.recyclerview:recyclerview:1.0.0' // Google Libraries implementation 'com.google.android.material:material:1.0.0' // Arch Components implementation 'androidx.core:core-ktx:1.0.1' implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0' implementation 'android.arch.navigation:navigation-fragment:1.0.0-alpha07' implementation 'androidx.room:room-runtime:2.1.0-alpha02' implementation 'androidx.legacy:legacy-support-v4:1.0.0-alpha1' implementation 'androidx.legacy:legacy-support-v13:1.0.0-alpha1' kapt "androidx.room:room-compiler:2.1.0-alpha02" kapt "androidx.lifecycle:lifecycle-compiler:2.0.0" // 3rd Party libs implementation 'com.daasuu:EasingInterpolator:1.0.0' // Test libs testImplementation 'junit:junit:4.12' testImplementation 'org.mockito:mockito-core:2.19.0' androidTestImplementation 'androidx.room:room-testing:2.1.0-alpha02' androidTestImplementation 'androidx.test:runner:1.1.0' androidTestImplementation 'androidx.test:rules:1.1.0' androidTestImplementation 'androidx.annotation:annotation:1.0.0' androidTestImplementation 'androidx.test:runner:1.1.0' androidTestImplementation 'androidx.test:rules:1.1.0' androidTestImplementation "androidx.arch.core:core-testing:2.0.0" androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' androidTestImplementation 'com.android.support.test.espresso:espresso-intents:3.0.2' implementation 'com.android.support.constraint:constraint-layout:1.1.3' }