narimetisaigopi

build.gradle(Module:App)

Apr 28th, 2019
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. def dbflow_version = "4.0.2"
  4.  
  5. android {
  6. compileSdkVersion 28
  7. defaultConfig {
  8. applicationId "com.example.dbflow"
  9. minSdkVersion 15
  10. targetSdkVersion 28
  11. versionCode 1
  12. versionName "1.0"
  13. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  14. }
  15. buildTypes {
  16. release {
  17. minifyEnabled false
  18. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  19. }
  20. }
  21. }
  22.  
  23. dependencies {
  24. implementation fileTree(dir: 'libs', include: ['*.jar'])
  25. implementation 'com.android.support:appcompat-v7:28.0.0'
  26. implementation 'com.android.support.constraint:constraint-layout:1.1.3'
  27. testImplementation 'junit:junit:4.12'
  28. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  29. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  30.  
  31. annotationProcessor "com.github.Raizlabs.DBFlow:dbflow-processor:${dbflow_version}"
  32.  
  33. implementation "com.github.Raizlabs.DBFlow:dbflow-core:${dbflow_version}"
  34. implementation "com.github.Raizlabs.DBFlow:dbflow:${dbflow_version}"
  35.  
  36. }
Add Comment
Please, Sign In to add comment