Advertisement
Guest User

Untitled

a guest
May 17th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 1.20 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.jetbrains.jonnyzzz.myapplication"
  11.         minSdkVersion 15
  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.txt'), 'proguard-rules.pro'
  21.         }
  22.     }
  23. }
  24.  
  25.  
  26.  
  27.  
  28. dependencies {
  29.  
  30.     implementation project(path: ':SharedCode', configuration: 'mobileConfiguration')
  31.  
  32.  
  33.     implementation fileTree(dir: 'libs', include: ['*.jar'])
  34.     implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
  35.     implementation 'com.android.support:appcompat-v7:28.0.0'
  36.     implementation 'com.android.support.constraint:constraint-layout:1.1.3'
  37.     testImplementation 'junit:junit:4.12'
  38.     androidTestImplementation 'com.android.support.test:runner:1.0.2'
  39.     androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement