build.gradle 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. signingConfigs {
  16. debug {
  17. storeFile file('../release.keystore')
  18. storePassword '123456'
  19. keyAlias 'key'
  20. keyPassword '123456'
  21. }
  22. release {
  23. storeFile file('../release.keystore')
  24. storePassword '123456'
  25. keyAlias 'key'
  26. keyPassword '123456'
  27. }
  28. }
  29. buildTypes {
  30. release {
  31. minifyEnabled false
  32. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  33. signingConfig signingConfigs.release
  34. }
  35. debug {
  36. signingConfig signingConfigs.release
  37. }
  38. }
  39. compileOptions {
  40. sourceCompatibility JavaVersion.VERSION_1_8
  41. targetCompatibility JavaVersion.VERSION_1_8
  42. }
  43. }
  44. dependencies {
  45. implementation libs.appcompat
  46. implementation libs.material
  47. testImplementation libs.junit
  48. androidTestImplementation libs.ext.junit
  49. androidTestImplementation libs.espresso.core
  50. compileOnly 'de.robv.android.xposed:api:82'
  51. implementation 'com.google.code.gson:gson:2.10.1'
  52. implementation 'org.apache.commons:commons-lang3:3.14.0'
  53. implementation 'commons-io:commons-io:2.16.1'
  54. }