Advertisement
Guest User

build.gradle

a guest
Dec 24th, 2018
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 1.14 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. apply plugin: 'kotlin-android'
  4.  
  5. apply plugin: 'kotlin-android-extensions'
  6.  
  7. android {
  8.     compileSdkVersion 28
  9.     defaultConfig {
  10.         applicationId "com.itechartgroup.zubkouski.aliaksei.lottietest"
  11.         minSdkVersion 21
  12.         targetSdkVersion 28
  13.         versionCode 1
  14.         versionName "1.0"
  15.         testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  16.     }
  17.     buildTypes {
  18.         release {
  19.             minifyEnabled false
  20.             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  21.         }
  22.     }
  23. }
  24.  
  25. dependencies {
  26.     implementation fileTree(dir: 'libs', include: ['*.jar'])
  27.     implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
  28.     implementation 'androidx.appcompat:appcompat:1.1.0-alpha01'
  29.     implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha2'
  30.     implementation "com.airbnb.android:lottie:2.8.0"
  31.     testImplementation 'junit:junit:4.12'
  32.     androidTestImplementation 'androidx.test:runner:1.1.1'
  33.     androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement