Advertisement
euis_kusesa

build gradle (Module:app)

Dec 24th, 2018
467
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4.     compileSdkVersion 28
  5.     useLibrary 'org.apache.http.legacy'
  6.     defaultConfig {
  7.         applicationId "com.example.asusx441n.examplelistviewdinamis"
  8.         minSdkVersion 16
  9.         targetSdkVersion 28
  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. }
  21.  
  22. dependencies {
  23.     implementation fileTree(dir: 'libs', include: ['*.jar'])
  24.     implementation 'com.android.support:appcompat-v7:28.0.0'
  25.     implementation 'com.android.support.constraint:constraint-layout:1.1.3'
  26.     testImplementation 'junit:junit:4.12'
  27.     androidTestImplementation 'com.android.support.test:runner:1.0.2'
  28.     androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  29.  
  30.     implementation 'com.android.volley:volley:1.1.0'
  31.     implementation 'com.github.bumptech.glide:glide:3.7.0'
  32.     implementation 'com.android.support:cardview-v7:28.0.0'
  33.     implementation 'com.android.support:recyclerview-v7:28.0.0'
  34.  
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement