build.gradle 1.7 KB

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