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

50 lines
949 B

plugins {
id 'com.android.library'
id 'com.chaquo.python'
}
android {
namespace 'com.undcover.freedom.pyramid'
compileSdk 34
flavorDimensions = ["abi"]
defaultConfig {
minSdk 21
targetSdk 28
python {
version "3.8"
pip {
install "lxml"
install "requests"
install 'pycryptodome'
install 'beautifulsoup4'
}
}
}
productFlavors {
x86 {
dimension "abi"
ndk { abiFilters "x86" }
}
arm64_v8a {
dimension "abi"
ndk { abiFilters "arm64-v8a" }
}
armeabi_v7a {
dimension "abi"
ndk { abiFilters "armeabi-v7a" }
}
}
sourceSets {
main {
python.srcDirs = ["src/main/python"]
}
}
}
dependencies {
implementation project(':catvod')
}