Daisy d7db12dba9 1,新增接入阿里云人脸认证SDK流程
2,接收及设置实名认证频次接口对接及逻辑处理
3,新增检测实名认证是否支持开启接口对接
4,新增检测certifyId是否完成认证接口对接
5,实现需实名认证的钥匙,认证完成后方可开锁的逻辑处理
2024-05-07 18:07:57 +08:00

51 lines
1.4 KiB
Groovy
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

buildscript {
ext.kotlin_version = '1.8.20'
repositories {
google()
mavenCentral()
mavenLocal()
// hms 若不集成华为厂商通道,可直接跳过
maven { url 'https://developer.huawei.com/repo/'}
// fcm 若不集成 FCM 通道,可直接跳过
maven { url "https://maven.google.com" }
}
dependencies {
classpath 'com.android.tools.build:gradle:7.1.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// fcm若不集成 FCM 通道,可直接跳过
classpath 'com.google.gms:google-services:4.3.8'
// hms若不集成华为厂商通道可直接跳过
classpath 'com.huawei.agconnect:agcp:1.6.0.300'
// 垃圾代码生成器
classpath "com.github.qq549631030:android-junk-code:1.3.3"
}
}
allprojects {
repositories {
google()
mavenCentral()
jcenter()
// 配置HMS Core SDK的Maven仓地址。
maven {url 'https://developer.huawei.com/repo/'}
flatDir {
dirs project(':aliyun_face_plugin').file('libs')
}
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
tasks.register("clean", Delete) {
delete rootProject.buildDir
}