Advertisement
rama_astadipati

Gradle Setup

Jan 13th, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.26 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. compileSdkVersion 28
  5. defaultConfig {
  6. applicationId "net.ramastudio.anotheracojwt"
  7. minSdkVersion 15
  8. targetSdkVersion 28
  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(include: ['*.jar'], dir: 'libs')
  23. implementation 'com.android.support:appcompat-v7:28.0.0'
  24. implementation 'com.android.support:design: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. implementation 'com.auth0.android:jwtdecode:1.2.0'
  30. implementation 'com.google.code.gson:gson:2.8.5'
  31. implementation 'com.squareup.retrofit2:retrofit:2.5.0'
  32. implementation 'com.squareup.retrofit2:retrofit-converters:2.5.0'
  33. implementation 'com.squareup.retrofit2:converter-gson:2.0.2'
  34.  
  35. implementation 'com.squareup.okhttp3:logging-interceptor:3.4.1'
  36. implementation 'com.android.support:cardview-v7:28.0.0-alpha3'
  37. implementation 'com.android.support:recyclerview-v7:28.0.0-alpha3'
  38. implementation 'com.basgeekball:awesome-validation:2.0'
  39. implementation 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1'
  40. implementation 'com.jakewharton:butterknife:8.8.1'
  41. annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
  42. implementation 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1'
  43. // circle view
  44. implementation 'de.hdodenhof:circleimageview:2.2.0'
  45. implementation 'com.squareup.picasso:picasso:2.5.2'
  46. implementation 'com.google.zxing:core:3.2.1'
  47. implementation 'com.journeyapps:zxing-android-embedded:3.2.0@aar'
  48. implementation 'com.squareup.retrofit2:converter-moshi:2.5.0'
  49. implementation 'com.facebook.stetho:stetho-okhttp3:1.5.0'
  50. implementation 'com.facebook.stetho:stetho:1.5.0'
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement