Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. compileSdkVersion 28
  5. buildToolsVersion '28.0.3'
  6. defaultConfig {
  7. applicationId "com.example.khali.nutriplan"
  8. minSdkVersion 22
  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(include: ['*.jar'], dir: 'libs')
  24. testImplementation 'junit:junit:4.12'
  25. implementation 'com.android.support:appcompat-v7:28.0.0'
  26. implementation 'com.android.support:support-v4:28.0.0'
  27. implementation 'com.android.support:design:28.0.0'
  28. implementation 'com.android.volley:volley:1.1.0'
  29. implementation 'org.jetbrains:annotations-java5:15.0'
  30. implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0-alpha'
  31. implementation 'com.numetriclabz.numandroidcharts:numandroidcharts:1.0.18'
  32. implementation 'com.xeoh.android:checkboxgroup:1.0.1'
  33. implementation 'com.jjoe64:graphview:4.2.2'
  34. implementation 'androidx.fragment:fragment:1.0.0'
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement