build.gradle 218 B

123456789101112131415161718
  1. plugins {
  2. id 'com.android.library'
  3. }
  4. android {
  5. namespace 'com.p2p'
  6. compileSdk 35
  7. defaultConfig {
  8. minSdk 21
  9. targetSdk 28
  10. }
  11. }
  12. dependencies {
  13. implementation project(':catvod')
  14. }