Advertisement
Guest User

Untitled

a guest
Feb 21st, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. compileSdkVersion 25
  5. buildToolsVersion "25.0.2"
  6.  
  7. defaultConfig {
  8. applicationId APPLICATION_ID // change this
  9. minSdkVersion 19
  10. targetSdkVersion 25
  11. versionCode 1
  12. versionName "1.0"
  13.  
  14. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  15.  
  16. }
  17. buildTypes {
  18. release {
  19. minifyEnabled false
  20. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  21. }
  22. }
  23. }
  24.  
  25. dependencies {
  26. compile fileTree(dir: 'libs', include: ['*.jar'])
  27. testCompile 'junit:junit:4.12'
  28. androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  29. exclude group: 'com.android.support', module: 'support-annotations'
  30. })
  31.  
  32. // for support tools and extra views
  33. def supportToolsVersion = '25.1.1'
  34. compile 'com.android.support:appcompat-v7:' + supportToolsVersion
  35. compile 'com.android.support:design:' + supportToolsVersion
  36. compile 'com.android.support:support-annotations:' + supportToolsVersion
  37. compile 'com.android.support:recyclerview-v7:' + supportToolsVersion
  38.  
  39. // for view injection using annotations
  40. def butterKnifeVersion = '8.5.1'
  41. compile 'com.jakewharton:butterknife:' + butterKnifeVersion
  42. annotationProcessor 'com.jakewharton:butterknife-compiler:' + butterKnifeVersion
  43.  
  44. // for state saving
  45. def icepickVersion = '3.2.0'
  46. compile 'frankiesardo:icepick:' + icepickVersion
  47. provided 'frankiesardo:icepick-processor:' + icepickVersion
  48.  
  49. // library for MVP framework
  50. def mosbyVersion = '2.0.1'
  51. compile 'com.hannesdorfmann.mosby:mvp:' + mosbyVersion
  52. compile 'com.hannesdorfmann.mosby:viewstate:' + mosbyVersion
  53.  
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement