build.gradle 255 B

1234567891011121314151617181920
  1. plugins {
  2. id 'com.android.library'
  3. }
  4. android {
  5. namespace = 'com.p2p'
  6. compileSdk {
  7. version = release(37)
  8. }
  9. defaultConfig {
  10. minSdk 24
  11. targetSdk 37
  12. }
  13. }
  14. dependencies {
  15. implementation project(':catvod')
  16. }