| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- plugins{
- id 'com.android.application'
- id'kotlin-android'
- id 'kotlin-android-extensions'
- id 'kotlin-kapt'
- }
- android {
- dataBinding {
- enabled = true
- }
- compileSdkVersion 29
- defaultConfig {
- applicationId "com.jkuester.unlauncher"
- minSdkVersion 21
- targetSdkVersion 29
- versionCode 41
- versionName "2.4.6"
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- vectorDrawables.useSupportLibrary = true
- }
- buildTypes {
- release {
- minifyEnabled true
- shrinkResources true
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- debug {
- minifyEnabled false
- applicationIdSuffix ".debug"
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- compileOptions {
- sourceCompatibility = JavaVersion.VERSION_1_8
- targetCompatibility = JavaVersion.VERSION_1_8
- }
- kotlinOptions {
- jvmTarget = "1.8"
- }
- lintOptions{
- disable 'MissingTranslation'
- }
- }
- 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.recyclerview:recyclerview:1.0.0'
- implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta2'
- // Arch Components
- implementation 'androidx.core:core-ktx:1.2.0-alpha03'
- implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0'
- implementation 'android.arch.navigation:navigation-fragment:1.0.0'
- implementation 'androidx.room:room-runtime:2.1.0'
- implementation "androidx.lifecycle:lifecycle-common-java8:2.0.0"
- implementation 'androidx.legacy:legacy-support-v4:1.0.0'
- kapt "androidx.room:room-compiler:2.1.0"
- //3rd party libs
- implementation 'com.intuit.sdp:sdp-android:1.0.6'
- implementation 'com.intuit.ssp:ssp-android:1.0.6'
- // Test libs
- testImplementation 'junit:junit:4.12'
- testImplementation 'org.mockito:mockito-core:2.19.0'
- androidTestImplementation 'androidx.room:room-testing:2.1.0'
- androidTestImplementation 'androidx.test:runner:1.2.0'
- androidTestImplementation 'androidx.test:rules:1.2.0'
- androidTestImplementation 'androidx.annotation:annotation:1.1.0'
- androidTestImplementation 'androidx.test:runner:1.2.0'
- androidTestImplementation 'androidx.test:rules:1.2.0'
- androidTestImplementation "androidx.arch.core:core-testing:2.0.1"
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
- androidTestImplementation 'androidx.test.espresso:espresso-intents:3.2.0'
- }
|