mirror of https://github.com/FongMi/TV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
392 B
19 lines
392 B
plugins {
|
|
alias libs.plugins.android.library
|
|
}
|
|
|
|
android {
|
|
namespace = 'com.forcetech'
|
|
|
|
compileSdk libs.versions.compileSdk.get().toInteger()
|
|
|
|
defaultConfig {
|
|
minSdk libs.versions.minSdk.get().toInteger()
|
|
targetSdk libs.versions.targetSdk.get().toInteger()
|
|
ndk { abiFilters "armeabi-v7a" }
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':catvod')
|
|
} |