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.
 
 
 
 
 
FONGMITV/thunder/build.gradle

28 lines
458 B

plugins {
id 'com.android.library'
}
android {
compileSdk 34
flavorDimensions = ["abi"]
defaultConfig {
minSdk 21
targetSdk 28
}
productFlavors {
armeabi_v7a {
dimension "abi"
ndk { abiFilters "armeabi-v7a" }
}
arm64_v8a {
dimension "abi"
ndk { abiFilters "arm64-v8a" }
}
}
}
dependencies {
implementation project(':catvod')
}