build.gradle 530 B

123456789101112131415161718192021222324252627
  1. plugins {
  2. id 'com.android.library'
  3. }
  4. android {
  5. namespace = 'com.fongmi.hook'
  6. compileSdk {
  7. version = release(37)
  8. }
  9. defaultConfig {
  10. minSdk 24
  11. targetSdk 37
  12. }
  13. compileOptions {
  14. coreLibraryDesugaringEnabled = true
  15. sourceCompatibility JavaVersion.VERSION_17
  16. targetCompatibility JavaVersion.VERSION_17
  17. }
  18. }
  19. dependencies {
  20. implementation 'androidx.annotation:annotation:1.9.1'
  21. coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs_nio:2.1.5'
  22. }