Advertisement
Guest User

Untitled

a guest
Jan 2nd, 2018
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 0.93 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4.     compileSdkVersion 27
  5.     defaultConfig {
  6.         applicationId "com.example.mateusz.test"
  7.         minSdkVersion 15
  8.         targetSdkVersion 27
  9.         versionCode 1
  10.         versionName "1.0"
  11.         testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  12.     }
  13.     buildTypes {
  14.         release {
  15.             minifyEnabled false
  16.             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  17.         }
  18.     }
  19. }
  20.  
  21. dependencies {
  22.     implementation fileTree(dir: 'libs', include: ['*.jar'])
  23.  
  24.     implementation "com.android.support:appcompat-v7:27.0.2"
  25.  
  26.     implementation 'com.afollestad.material-dialogs:core:0.9.4.0'
  27.  
  28.     testImplementation 'junit:junit:4.12'
  29.     androidTestImplementation 'com.android.support.test:runner:1.0.1'
  30.     androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement