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

55 lines
1.1 KiB

plugins {
id 'com.android.library'
id 'com.chaquo.python'
}
android {
namespace 'com.fongmi.chaquo'
compileSdk 35
flavorDimensions = ["abi"]
defaultConfig {
minSdk 21
targetSdk 28
python {
version "3.8"
pip {
install "lxml"
install "ujson"
install "pyquery"
install "requests"
install "jsonpath"
install "cachetools"
install 'pycryptodome'
install 'beautifulsoup4'
}
}
}
productFlavors {
arm64_v8a {
dimension "abi"
ndk { abiFilters "arm64-v8a" }
}
armeabi_v7a {
dimension "abi"
ndk { abiFilters "armeabi-v7a" }
}
}
sourceSets {
main {
python.srcDirs = ["src/main/python"]
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
}
dependencies {
implementation project(':catvod')
}