Advertisement
Guest User

Module : app

a guest
Dec 11th, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 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 "com.amel.your_student"
  8. minSdkVersion 14
  9. targetSdkVersion 29
  10. versionCode 1
  11. versionName "1.0"
  12. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  13. javaCompileOptions {
  14. annotationProcessorOptions {
  15. includeCompileClasspath false
  16. arguments = ["room.schemaLocation": "$projectDir/room_testDb".toString()]
  17. }
  18. }
  19. }
  20. buildTypes {
  21. release {
  22. minifyEnabled false
  23. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  24. }
  25. }
  26. }
  27.  
  28. dependencies {
  29. implementation fileTree(dir: 'libs', include: ['*.jar'])
  30. implementation 'androidx.appcompat:appcompat:1.1.0'
  31. implementation 'com.google.android.material:material:1.0.0-rc01';
  32. implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  33. implementation 'androidx.legacy:legacy-support-v4:1.0.0'
  34. testImplementation 'junit:junit:4.12'
  35. androidTestImplementation 'androidx.test.ext:junit:1.1.0'
  36. androidTestImplementation 'androidx.test:runner:1.2.0'
  37. androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
  38.  
  39. implementation 'androidx.recyclerview:recyclerview:1.0.0'
  40.  
  41. implementation 'androidx.room:room-runtime:2.2.1'
  42. annotationProcessor 'androidx.room:room-compiler:2.2.1'
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement