| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- 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 20
- versionName "2.1.1"
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- vectorDrawables.useSupportLibrary = true
- }
- buildTypes {
- release {
- minifyEnabled true
- shrinkResources 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'
- kapt "androidx.room:room-compiler:2.1.0-alpha02"
- kapt "androidx.lifecycle:lifecycle-compiler:2.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'
- }
|