Browse Source

更新 'AI/安卓活体核身接入文档.md'

pull/1/head
周雪成 3 years ago
parent
commit
80a543d54b
1 changed files with 4 additions and 4 deletions
  1. 4
    4
      AI/安卓活体核身接入文档.md

+ 4
- 4
AI/安卓活体核身接入文档.md View File

@@ -12,7 +12,7 @@
12 12
 
13 13
 ### 配置证书和签名
14 14
 
15
-1. 提供应用ID和签名文件md5码获取证书文件`idl-license.face-android`([如何获取应用ID和签名文件md5码](https://cugeducn-my.sharepoint.com/:b:/g/personal/zhouxc_cug_edu_cn/EQA0mcJoDFhPvJmuKXIuumEBuDf-Bo9seappz2OqhW06fQ?e=ZzQoUC)),放入您的项目目录 `app\src\main\assets`。
15
+1. 提供应用ID和签名文件md5码获取证书文件`idl-license.face-android`,和证书ID `LicenseID`([如何获取应用ID和签名文件md5码](https://cugeducn-my.sharepoint.com/:b:/g/personal/zhouxc_cug_edu_cn/EQA0mcJoDFhPvJmuKXIuumEBuDf-Bo9seappz2OqhW06fQ?e=ZzQoUC)),放入您的项目目录 `app\src\main\assets`。
16 16
 2. app\build.gradle 内配置:
17 17
 
18 18
     ```
@@ -105,7 +105,7 @@ cert.setUserCode("xxxx");
105 105
 cert.setUrl("xxxx");
106 106
 cert.setSysName("xxxx");
107 107
 
108
-FaceidSDK.getInstance().init(MainActivity.this, cert,new FaceidSDK.FaceidLoginListener() {
108
+FaceidSDK.getInstance().init(MainActivity.this,'你的LicenseID', cert,new FaceidSDK.FaceidLoginListener() {
109 109
     @Override
110 110
     public void onLoginSuccess() { //登录成功,拉起 入口方法一 的SDK 页面,
111 111
         FaceidSDK.getInstance().startActivity(inputdata, new FaceidSDK.FaceidResultListener() {
@@ -157,10 +157,10 @@ public class FaceidSDK {
157 157
 
158 158
     /**
159 159
     * 在使用SDK前先初始化,
160
-    * 传入证书key `credential`,
160
+    * 传入证书key `credential`,证书id LicenseID
161 161
     * 由 FaceidLoginListener返回是否初始化SDK成功
162 162
     */
163
-    public void init(Context context,Credential credential, FaceidLoginListener loginListerner){
163
+    public void init(Context context,String LicenseID,Credential credential, FaceidLoginListener loginListerner){
164 164
     //    ...
165 165
     }
166 166
 

Loading…
Cancel
Save