KFB podstawa

build.gradle 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 29
  4. buildToolsVersion "29.0.3"
  5. defaultConfig {
  6. applicationId "com.kfb.kfbv1"
  7. minSdkVersion 26
  8. targetSdkVersion 29
  9. versionCode 1
  10. versionName "1.0"
  11. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  12. }
  13. buildTypes {
  14. release {
  15. minifyEnabled false
  16. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  17. }
  18. }
  19. }
  20. dependencies {
  21. def room_version = "2.2.5"
  22. implementation fileTree(dir: 'libs', include: ['*.jar'])
  23. implementation "androidx.room:room-runtime:$room_version"
  24. implementation 'com.loopj.android:android-async-http:1.4.9'
  25. implementation 'androidx.appcompat:appcompat:1.1.0'
  26. implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  27. testImplementation 'junit:junit:4.12'
  28. androidTestImplementation 'androidx.test.ext:junit:1.1.1'
  29. androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
  30. implementation 'androidx.recyclerview:recyclerview:1.1.0'
  31. implementation 'com.google.android.material:material:1.1.0'
  32. annotationProcessor 'androidx.room:room-compiler:2.1.0'
  33. }