build.gradle 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. plugins {
  2. id 'com.android.library'
  3. id 'org.jetbrains.kotlin.android'
  4. }
  5. android {
  6. compileSdk 32
  7. defaultConfig {
  8. minSdk 30
  9. targetSdk 32
  10. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  11. consumerProguardFiles "consumer-rules.pro"
  12. }
  13. buildTypes {
  14. release {
  15. minifyEnabled false
  16. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  17. }
  18. }
  19. compileOptions {
  20. sourceCompatibility JavaVersion.VERSION_1_8
  21. targetCompatibility JavaVersion.VERSION_1_8
  22. }
  23. kotlinOptions {
  24. jvmTarget = '1.8'
  25. }
  26. namespace 'im.angry.openeuicc.hidden_apis_shim'
  27. }
  28. dependencies {
  29. implementation 'androidx.core:core-ktx:1.7.0'
  30. implementation 'androidx.appcompat:appcompat:1.4.2'
  31. implementation 'com.google.android.material:material:1.6.1'
  32. testImplementation 'junit:junit:4.13.2'
  33. androidTestImplementation 'androidx.test.ext:junit:1.1.3'
  34. androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
  35. }