| 123456789101112131415161718192021222324252627 |
- plugins {
- id 'com.android.library'
- }
- android {
- namespace = 'com.ghost.thunder'
- compileSdk {
- version = release(37)
- }
- defaultConfig {
- minSdk 24
- targetSdk 37
- }
- compileOptions {
- coreLibraryDesugaringEnabled = true
- sourceCompatibility JavaVersion.VERSION_17
- targetCompatibility JavaVersion.VERSION_17
- }
- }
- dependencies {
- implementation project(':catvod')
- coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs_nio:2.1.5'
- }
|