TozSDK s1整合文件

2021-08-19 14:45:36 字數 1551 閱讀 8679

1. 在使用tozsdk模組的build.gradle中,新增如下配置:  

implementation 'com.tozmart:tozmartsdk-s1:1.1.4'
android }}

buildtypes

}externalnativebuild

}}dependencies

1. 許可權申請

tozsdk使用到了網路、相機和讀寫檔案的許可權,需要在androidmanifest配置:

android:allowbackup="true"

android:icon="@mipmap/ic_launcher"

android:roundicon="@mipmap/ic_launcher_round"

android:supportsrtl="true"

1. 初始化tozsdk

@override

public void oncreate()

} android:allowbackup="true"

android:icon="@mipmap/ic_launcher"

android:roundicon="@mipmap/ic_launcher_round"

android:supportsrtl="true"

2. 使用tozsdk

sdk的入口為跳轉到camerabackactivity頁面,使用正常的activity跳轉方法並配置好customerinfo這個引數:

intent cameraintent = new intent(mainactivity.this, camerabackactivity.class);

customerinfo customerinfo = new customerinfo();

customerinfo.setcorid("100"); // 分配的公司帳戶id,string型

customerinfo.setuserid("10000"); // 使用者id,string型

customerinfo.setusername("test"); // 量體使用者的名字,string型

customerinfo.setuserheight(180.f); // 量體使用者的身高,單位是cm,float型

customerinfo.setuserweight(75.f); // 量體使用者的體重,單位是kg,float型

customerinfo.setusergender("1"); // 量體使用者的性別,男性是「1」,女性是「0」,string型

bundle bundle = new bundle();

bundle.putparcelable("customerinfo", customerinfo);

cameraintent.putextras(bundle);

startactivity(cameraintent);

Phpcms 整合文件

phpcms整合discuz 首先進入 後台 開啟系統設定 基本配置 通行證 確認後phpcms部分的設定即完成。登陸discuz 論壇後台 開啟擴充套件設定 通行證api 通行證設定 最後點下面的 提交 即完成論壇部分的設定。至此discuz與phpcms的整合也就完成了,可以到 進行測試是否成功...

flutter 生成文件 Flutter整合文件

flutter整合文件 諸葛io移動統計支援flutter框架,以下為整合方法。1.在專案中新增安裝外掛程式 在flutter專案的pubspec.yaml檔案中新增zhugeio依賴包 dependencies zhugeio flutter plugin zhugeio 1.0.1 執行flut...

android 科大訊飛語音識別 整合文件

整合語音識別時也是查了很多資料最後終於整合完成,把自己的經驗分享出來,希望能夠幫助大家 初始化在當前的activityde oncreate方法中呼叫 masr speechrecognizer.createrecognizer this,minitlistener mtoast toast.mak...