Advertisement
davhilmawan

Untitled

Jan 4th, 2021
1,375
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Kotlin 1.77 KB | None | 0 0
  1. plugins {
  2.     id 'com.android.application'
  3.     id 'kotlin-android'
  4.     id 'kotlin-android-extensions'
  5.     id 'kotlin-kapt'
  6. }
  7.  
  8. android {
  9.     compileSdkVersion 29
  10.  
  11.     defaultConfig {
  12.         applicationId "com.mdavidhilmawan_18102023.praktikum10"
  13.         minSdkVersion 21
  14.         targetSdkVersion 29
  15.         versionCode 1
  16.         versionName "1.0"
  17.  
  18.         testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  19.     }
  20.  
  21.     buildTypes {
  22.         release {
  23.             minifyEnabled false
  24.             proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  25.         }
  26.     }
  27.     dataBinding {
  28.         enabled = true
  29.     }
  30.     compileOptions {
  31.         sourceCompatibility JavaVersion.VERSION_1_8
  32.         targetCompatibility JavaVersion.VERSION_1_8
  33.     }
  34.     kotlinOptions {
  35.         jvmTarget = '1.8'
  36.     }
  37. }
  38.  
  39. dependencies {
  40.     kapt 'androidx.databinding:databinding-compiler:4.1.1'
  41.     implementation 'androidx.appcompat:appcompat:1.2.0'
  42.     implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
  43.     implementation 'com.google.android.material:material:1.2.1'
  44.     implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9"
  45.     implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.9"
  46.     implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
  47.     implementation 'androidx.core:core-ktx:1.3.2'
  48.     implementation 'androidx.appcompat:appcompat:1.2.0'
  49.     implementation 'com.google.android.material:material:1.2.1'
  50.     implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
  51.     testImplementation 'junit:junit:4.+'
  52.     androidTestImplementation 'androidx.test.ext:junit:1.1.2'
  53.     androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement