plugins { id 'com.android.library' id 'com.chaquo.python' } android { compileSdk 33 defaultConfig { minSdk 21 targetSdk 33 ndk { abiFilters "armeabi-v7a" } python { buildPython "C:/Users/FongMi.DIREK/Anaconda3/python.exe" pip { install "pycrypto" install "requests" install "lxml" } } } sourceSets { main { python.srcDirs = ["src/main/python"] } } } dependencies { implementation project(':catvod') implementation 'com.google.code.gson:gson:2.10' }