Advertisement
Guest User

Untitled

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