build.gradle 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. plugins {
  2. id 'com.android.application'
  3. id 'org.jetbrains.kotlin.android'
  4. }
  5. android {
  6. compileSdk 31
  7. defaultConfig {
  8. applicationId "im.angry.openeuicc"
  9. minSdk 30
  10. targetSdk 31
  11. versionCode 1
  12. versionName "1.0"
  13. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  14. }
  15. buildTypes {
  16. release {
  17. minifyEnabled false
  18. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  19. }
  20. }
  21. compileOptions {
  22. sourceCompatibility JavaVersion.VERSION_1_8
  23. targetCompatibility JavaVersion.VERSION_1_8
  24. }
  25. kotlinOptions {
  26. jvmTarget = '1.8'
  27. }
  28. namespace 'im.angry.openeuicc'
  29. }
  30. dependencies {
  31. compileOnly project(':libs:hidden-apis-stub')
  32. implementation project(':libs:hidden-apis-shim')
  33. implementation project(":libs:lpad-sm-dp-plus-connector")
  34. implementation 'androidx.core:core-ktx:1.7.0'
  35. implementation 'androidx.appcompat:appcompat:1.4.1'
  36. implementation 'com.google.android.material:material:1.6.0'
  37. implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
  38. implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.4.1'
  39. implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
  40. implementation "androidx.cardview:cardview:1.0.0"
  41. implementation 'com.journeyapps:zxing-android-embedded:4.3.0'
  42. testImplementation 'junit:junit:4.13.2'
  43. androidTestImplementation 'androidx.test.ext:junit:1.1.3'
  44. androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
  45. }