build.gradle 1.65 KB
apply plugin: 'com.android.library'
apply plugin: 'maven'

buildscript {
    repositories {
        mavenLocal()
        google()
        jcenter()
        maven() {
            url '/usr/local/node/lib/node_modules/react-native/android'
        }
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:3.5.3'
    }
}

repositories {
    mavenLocal()
    google()
    jcenter()
    maven {
        url '/usr/local/node/lib/node_modules/react-native/android'
    }
}


apply plugin: 'com.android.library'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.1"

    defaultConfig {
        minSdkVersion 16
        targetSdkVersion 22
        versionCode 1
        versionName "1.0"
        ndk {
              abiFilters "armeabi-v7a", "arm64-v8a"
            }
    }

    buildTypes {
        release {
            minifyEnabled false
        }
    }
    lintOptions {
      abortOnError false
    }

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
}


dependencies {
    compileOnly 'com.facebook.react:react-native:+'
    // 本地包依赖
    implementation files('libs/aligreen-release-2.0.0.aar')
    implementation files('libs/FaceLivenessOpen-3.2.0.aar')
    implementation files('libs/NoCaptchaSDK-external-release-5.4.29.aar')
    implementation files('libs/SecurityBodySDK-external-release-5.4.79.aar')
    implementation files('libs/SecurityGuardSDK-exte rnal-release-5.4.121.aar')
    // 远程包依赖
    // implementation 'com.alibaba:fastjson:1.2.62'
    // implementation 'com.alibaba.android.mnnkit:core:0.0.5'
    compileOnly files('src/main/assets')
}