build.gradle 302 B

123456789101112131415161718192021
  1. plugins {
  2. id 'com.android.library'
  3. }
  4. android {
  5. namespace = 'com.forcetech'
  6. compileSdk {
  7. version = release(37)
  8. }
  9. defaultConfig {
  10. minSdk 24
  11. targetSdk 37
  12. ndk { abiFilters "armeabi-v7a" }
  13. }
  14. }
  15. dependencies {
  16. implementation project(':catvod')
  17. }