| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- 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 14
- targetSdkVersion 28
- versionCode 21
- versionName "2.1.2"
- 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
- applicationIdSuffix ".debug"
- 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-alpha09'
- implementation 'androidx.room:room-runtime:2.1.0-alpha03'
- kapt "androidx.room:room-compiler:2.1.0-alpha03"
- 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-alpha03'
- androidTestImplementation 'androidx.test:runner:1.1.1'
- androidTestImplementation 'androidx.test:rules:1.1.1'
- androidTestImplementation 'androidx.annotation:annotation:1.0.1'
- androidTestImplementation 'androidx.test:runner:1.1.1'
- androidTestImplementation 'androidx.test:rules:1.1.1'
- 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'
- }
|