Advertisement
Guest User

build.gradle (app)

a guest
Aug 27th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 1.72 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 "ru.skillbranch.devintensive"
  11.         minSdkVersion 23
  12.         targetSdkVersion 28
  13.         versionCode 1
  14.         versionName "1.0"
  15.         testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  16.     }
  17.     buildTypes {
  18.         release {
  19.             minifyEnabled false
  20.             proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  21.         }
  22.     }
  23.     androidExtensions {
  24.         experimental = true
  25.     }
  26. }
  27.  
  28. dependencies {
  29.     implementation fileTree(dir: 'libs', include: ['*.jar'])
  30.     implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
  31.     implementation 'androidx.appcompat:appcompat:1.0.2'
  32.     implementation 'androidx.core:core-ktx:1.0.2'
  33.     implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  34.     implementation 'com.google.android.material:material:1.0.0'
  35.     implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0'
  36.     implementation 'com.github.bumptech.glide:glide:4.9.0'
  37.     //implementation 'com.android.support:support-v4:27.1.1'
  38.     testImplementation 'junit:junit:4.12'
  39.     androidTestImplementation 'com.android.support.test:rules:1.0.2'
  40.     androidTestImplementation 'com.android.support.test:runner:1.0.2'
  41.     androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  42.     androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
  43.     androidTestImplementation 'androidx.test.espresso:espresso-contrib:3.2.0'
  44.     androidTestImplementation "androidx.test:core:1.2.0"
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement