Advertisement
Guest User

Untitled

a guest
Dec 6th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.53 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4.     compileSdkVersion 26
  5.     buildToolsVersion "26.0.2"
  6.     defaultConfig {
  7.         applicationId "ke.co.sumba.courierapp"
  8.         minSdkVersion 19
  9.         targetSdkVersion 26
  10.         versionCode 1
  11.         versionName "1.0"
  12.         testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  13.     }
  14.     buildTypes {
  15.         release {
  16.             minifyEnabled false
  17.             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  18.         }
  19.     }
  20.     configurations.all {
  21.         resolutionStrategy.force 'com.android.support:support-v4:26.1.0'
  22.     }
  23. }
  24.  
  25. dependencies {
  26.     compile fileTree(dir: 'libs', include: ['*.jar'])
  27.     androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  28.         exclude group: 'com.android.support', module: 'support-annotations'
  29.     })
  30.  
  31.  
  32.     compile 'com.android.support:appcompat-v7:26.+'
  33.     compile 'com.android.support:cardview-v7:26.+'
  34.  
  35.     compile 'com.android.support:appcompat-v7:26.+'
  36.     compile 'com.android.support:design:26.+'
  37.     compile 'com.android.support:support-v4:26.+'
  38.  
  39.  
  40.     compile 'com.android.support.constraint:constraint-layout:1.0.0'
  41.  
  42.     compile 'com.github.bumptech.glide:glide:3.7.0'
  43.     compile 'cn.pedant.sweetalert:library:1.3'
  44.     compile 'com.rengwuxian.materialedittext:library:2.1.4'
  45.     compile 'com.squareup.retrofit2:converter-gson:2.4.0'
  46.     compile 'com.github.bumptech.glide:glide:3.7.0'
  47.  
  48.  
  49.     testCompile 'junit:junit:4.12'
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement