| 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 15
- targetSdkVersion 28
- versionCode 15
- versionName "1.3.0"
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- vectorDrawables.useSupportLibrary = true
- }
- buildTypes {
- release {
- minifyEnabled 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.0'
- 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.0'
- implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0'
- implementation 'android.arch.navigation:navigation-fragment:1.0.0-alpha06'
- implementation 'androidx.room:room-runtime:2.1.0-alpha01'
- kapt "androidx.room:room-compiler:2.1.0-alpha01"
- 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.7.6'
- androidTestImplementation 'androidx.room:room-testing:2.1.0-alpha01'
- androidTestImplementation 'androidx.test:runner:1.1.0-beta02'
- androidTestImplementation 'androidx.test:rules:1.1.0-beta02'
- androidTestImplementation 'androidx.annotation:annotation:1.0.0'
- androidTestImplementation 'androidx.test:runner:1.1.0-beta02'
- androidTestImplementation 'androidx.test:rules:1.1.0-beta02'
- androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
- androidTestImplementation 'com.android.support.test.espresso:espresso-intents:3.0.2'
- }
|