Compare commits
7 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
5b639cf90e | ||
![]() |
ccf9cbd1d3 | ||
![]() |
f6914db0a1 | ||
![]() |
f32d2af166 | ||
![]() |
6e4dcaeccf | ||
![]() |
a9e469aa31 | ||
![]() |
0f58bb0e1a |
File diff suppressed because one or more lines are too long
@ -409,30 +409,30 @@ function verifyEmail(funId, email, code) {
|
|||||||
promiseCb(funId, jc.wallet.emailVerifySvr.updateEmailVerify(email, code));
|
promiseCb(funId, jc.wallet.emailVerifySvr.updateEmailVerify(email, code));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
// /**
|
||||||
* check if email had already been registed
|
// * check if email had already been registed
|
||||||
* @param {string} email
|
// * @param {string} email
|
||||||
*/
|
// */
|
||||||
function checkEmailExists(funId, email) {
|
// function checkEmailExists(funId, email) {
|
||||||
promiseCb(funId, jc.wallet.emailVerifySvr.isEmailRegister(email));
|
// promiseCb(funId, jc.wallet.emailVerifySvr.isEmailRegister(email));
|
||||||
}
|
// }
|
||||||
/**
|
// /**
|
||||||
* regist with email
|
// * regist with email
|
||||||
* @param {*} email
|
// * @param {*} email
|
||||||
* @param {*} password
|
// * @param {*} password
|
||||||
* @param {*} code
|
// * @param {*} code
|
||||||
*/
|
// */
|
||||||
function emailRegist(funId, email, password, code) {
|
// function emailRegist(funId, email, password, code) {
|
||||||
promiseCb(funId, jc.wallet.emailVerifySvr.registByEmail(email, password, code));
|
// promiseCb(funId, jc.wallet.emailVerifySvr.registByEmail(email, password, code));
|
||||||
}
|
// }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* login with email
|
* login with email
|
||||||
* @param {*} email
|
* @param {*} email
|
||||||
* @param {*} password
|
* @param {*} password
|
||||||
*/
|
*/
|
||||||
function emailLogin(funId, email, password) {
|
function emailLogin(funId, email, password, account) {
|
||||||
promiseCb(funId, jc.wallet.emailLogin(email, password));
|
promiseCb(funId, jc.wallet.emailLogin(email, password, account));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -851,3 +851,8 @@ function getLocalPassState(funId, key) {
|
|||||||
promiseCb(funId, jc.wallet.nativeSvr.passStorageState(key));
|
promiseCb(funId, jc.wallet.nativeSvr.passStorageState(key));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function createShareCode(funId, type) {
|
||||||
|
type = parseInt(type || '1');
|
||||||
|
promiseCb(funId, jc.wallet.generateShareCode(type));
|
||||||
|
}
|
||||||
|
|
||||||
|
@ -29,7 +29,7 @@
|
|||||||
android:value="@string/facebook_client_token" />
|
android:value="@string/facebook_client_token" />
|
||||||
|
|
||||||
<provider
|
<provider
|
||||||
android:authorities="com.facebook.app.FacebookContentProvider1204701000119770"
|
android:authorities="com.facebook.app.FacebookContentProvider927390338872834"
|
||||||
android:name="com.facebook.FacebookContentProvider"
|
android:name="com.facebook.FacebookContentProvider"
|
||||||
android:exported="true" />
|
android:exported="true" />
|
||||||
<provider
|
<provider
|
||||||
|
@ -6,9 +6,9 @@
|
|||||||
<string name="default_web_client_id1" translatable="false">53206975661-ih3r0ubph3rqejdq97b029difbrk2bqj.apps.googleusercontent.com</string>
|
<string name="default_web_client_id1" translatable="false">53206975661-ih3r0ubph3rqejdq97b029difbrk2bqj.apps.googleusercontent.com</string>
|
||||||
<string name="tips_scan_code" translatable="false"></string>
|
<string name="tips_scan_code" translatable="false"></string>
|
||||||
|
|
||||||
<string name="facebook_app_id" translatable="false">1204701000119770</string>
|
<string name="facebook_app_id" translatable="false">927390338872834</string>
|
||||||
<string name="fb_login_protocol_scheme" translatable="false">fb1204701000119770</string>
|
<string name="fb_login_protocol_scheme" translatable="false">fb927390338872834</string>
|
||||||
<string name="facebook_client_token" translatable="false">3e29f2606ae15a99bb3824d2ef1a9d0b</string>
|
<string name="facebook_client_token" translatable="false">45a8f9658499222aedd76418f7c33b27</string>
|
||||||
|
|
||||||
<string name="prompt_info_title" translatable="false">Biometric login for Wallet</string>
|
<string name="prompt_info_title" translatable="false">Biometric login for Wallet</string>
|
||||||
<string name="prompt_info_subtitle" translatable="false">Login using your biometric credential</string>
|
<string name="prompt_info_subtitle" translatable="false">Login using your biometric credential</string>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user