Advertisement
Guest User

Untitled

a guest
Sep 20th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. compileSdkVersion 29
  5. buildToolsVersion "29.0.2"
  6. defaultConfig {
  7. applicationId "ca.qc.cegepsth.gep.ouvririmageurl"
  8. minSdkVersion 28
  9. targetSdkVersion 29
  10. versionCode 1
  11. versionName "1.0"
  12. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  13. }
  14. buildTypes {
  15. release {
  16. minifyEnabled false
  17. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  18. }
  19. }
  20. }
  21.  
  22. dependencies {
  23. implementation fileTree(include: ['*.jar'], dir: 'libs')
  24. implementation 'androidx.appcompat:appcompat:1.0.0-beta01'
  25. implementation 'androidx.constraintlayout:constraintlayout:1.1.2'
  26. testImplementation 'junit:junit:4.12'
  27. androidTestImplementation 'androidx.test:runner:1.1.0-alpha4'
  28. androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0-alpha4'
  29. annotationProcessor "org.androidannotations:androidannotations:4.6.0"
  30. annotationProcessor "org.androidannotations:androidannotations-api:4.6.0"
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement