build.gradle 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. plugins {
  2. alias(libs.plugins.androidApplication)
  3. }
  4. android {
  5. namespace 'com.example.modifiermodule'
  6. compileSdk 34
  7. defaultConfig {
  8. applicationId "com.example.modifiermodule"
  9. minSdk 24
  10. targetSdk 34
  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. }
  26. dependencies {
  27. implementation libs.appcompat
  28. implementation libs.material
  29. testImplementation libs.junit
  30. androidTestImplementation libs.ext.junit
  31. androidTestImplementation libs.espresso.core
  32. compileOnly 'de.robv.android.xposed:api:82'
  33. implementation 'com.google.code.gson:gson:2.10.1'
  34. implementation 'org.apache.commons:commons-lang3:3.14.0'
  35. implementation 'commons-io:commons-io:2.16.1'
  36. }