TUTK_Android PSC_build.gradle基本配置

太叔志尚
2023-12-01
apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion '27.0.1'
    defaultConfig {
        minSdkVersion 18
        targetSdkVersion 22
        ndk {
            abiFilters 'armeabi-v7a', 'armeabi', 'x86'
        }
    }

    repositories {
        flatDir {
            dirs  'libs'
        }
    }

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')

    /*   Kalay Module   */
    compile project(path: ':AVIOCTRLDEF', configuration: 'v3_1_5_11Release')
    compile(name: 'IOTCamera-vKalay_release', ext: 'aar')
    compile(name: 'libLocalRecorder-2.0.4', ext: 'aar')
    compile(name: 'libMediaConvert-2.0.3', ext: 'aar')
    compile(name: 'libSLC-1.0.8', ext: 'aar')

compile(name: 'KIDewarp', ext: 'aar')//鱼眼的aar,只支持'armeabi', 'x86'(没有鱼眼的可不加)
}
 类似资料: