| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- 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 "0.0.1"
- 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'
- }
- applicationVariants.all { variant ->
- variant.outputs.all {
- outputFileName = "${applicationId}.apk"
- }
- }
- }
- 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'
- }
|