build.gradle 1015 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. plugins {
  2. alias(libs.plugins.androidApplication)
  3. }
  4. android {
  5. namespace 'com.example.smshook'
  6. compileSdk 34
  7. defaultConfig {
  8. applicationId "com.example.smshook"
  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. implementation libs.activity
  30. implementation libs.constraintlayout
  31. testImplementation libs.junit
  32. androidTestImplementation libs.ext.junit
  33. androidTestImplementation libs.espresso.core
  34. implementation 'de.robv.android.xposed:api:82'
  35. }