apply plugin: 'com.android.library' android { compileSdkVersion 29 defaultConfig { minSdkVersion 16 targetSdkVersion 28 versionCode 1 versionName "1.0" testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } sourceSets { main { assets.srcDirs = ['src/assets', 'src/assets/','src/assets/image'] } } } repositories { flatDir { dirs 'libs' } // maven { url 'https://jitpack.io' } // google() // jcenter() } dependencies { // implementation project(path: ':oxplugin_video_manager') // implementation project(path: ':uniplugin_module_TXLiveAVSDK') // implementation project(path: ':oxplugin_video_manager') // implementation project(path: ':ugckit') // implementation project(path: ':ugckit') // implementation project(path: ':oxplugin_hardware') implementation project(path: ':daemonlibrary') // implementation project(path: ':pp_AI_module') //引入百度AI飞桨 // implementation project(path: ':pp_AI_FastDeployDetection_module') //引入百度AI FastDeploy // implementation project(path: ':uniplugin_module_PP_FastDeploy') // implementation project(path: ':pp_lite_detect_PicoDet') //引入百度AI飞桨 // implementation project(path: ':pp_lite_detection') // implementation project(path: ':appSettingLib') //引入百度AI飞桨 compileOnly fileTree(dir: 'libs', include: ['*.jar']) compileOnly fileTree(dir: '../app/libs', include: ['uniapp-v8-release.aar']) compileOnly 'androidx.recyclerview:recyclerview:1.0.0' compileOnly 'androidx.legacy:legacy-support-v4:1.0.0' compileOnly 'androidx.appcompat:appcompat:1.0.0' implementation 'com.alibaba:fastjson:1.1.46.android' implementation 'com.facebook.fresco:fresco:1.13.0' /*implementation 'com.android.support:appcompat-v7:28.0.0' testImplementation 'junit:junit:4.12' androidTestImplementation 'com.android.support.test:runner:1.0.2' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'*/ implementation'org.nanohttpd:nanohttpd:2.3.1' implementation 'com.blankj:utilcode:1.30.7' // 2.3.2-SNAPSHOT //添加进程保活库 // implementation 'com.github.wangshihu123:DaemonLibrary:v1.2.1' implementation 'androidx.annotation:annotation:1.1.0' //添加ffmpeg android, 尝试解决shall执行大文件无回调问题 implementation 'nl.bravobit:android-ffmpeg:1.1.7' }