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.
32 lines
629 B
32 lines
629 B
plugins {
|
|
id 'com.android.library'
|
|
}
|
|
|
|
android {
|
|
compileSdk 33
|
|
flavorDimensions "abi"
|
|
|
|
defaultConfig {
|
|
minSdk 21
|
|
targetSdk 28
|
|
//noinspection ChromeOsAbiSupport
|
|
ndk { abiFilters "armeabi-v7a" }
|
|
}
|
|
|
|
productFlavors {
|
|
armeabi_v7a {
|
|
dimension "abi"
|
|
//noinspection ChromeOsAbiSupport
|
|
ndk { abiFilters "armeabi-v7a" }
|
|
}
|
|
arm64_v8a {
|
|
dimension "abi"
|
|
//noinspection ChromeOsAbiSupport
|
|
ndk { abiFilters "arm64-v8a" }
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':catvod')
|
|
} |