fixup! huawei: Add huawei account support

This commit is contained in:
Vitaliy Tomin 2024-04-25 13:59:47 +08:00
parent 3e9df9fd92
commit 252692cceb
3 changed files with 3 additions and 3 deletions

View File

@ -41,7 +41,7 @@ public class SendAccountRequest extends Request {
protected List<byte[]> createRequest() throws RequestCreationException { protected List<byte[]> createRequest() throws RequestCreationException {
String account = GBApplication String account = GBApplication
.getDeviceSpecificSharedPrefs(supportProvider.getDevice().getAddress()) .getDeviceSpecificSharedPrefs(supportProvider.getDevice().getAddress())
.getString(HuaweiConstants.PREF_HUAWEI_ACCOUNT, ""); .getString(HuaweiConstants.PREF_HUAWEI_ACCOUNT, "").trim();
try { try {
return new AccountRelated.SendAccountToDevice.Request(paramsProvider, account).serialize(); return new AccountRelated.SendAccountToDevice.Request(paramsProvider, account).serialize();
} catch (CryptoException e) { } catch (CryptoException e) {

View File

@ -41,7 +41,7 @@ public class SendExtendedAccountRequest extends Request {
protected List<byte[]> createRequest() throws Request.RequestCreationException { protected List<byte[]> createRequest() throws Request.RequestCreationException {
String account = GBApplication String account = GBApplication
.getDeviceSpecificSharedPrefs(supportProvider.getDevice().getAddress()) .getDeviceSpecificSharedPrefs(supportProvider.getDevice().getAddress())
.getString(HuaweiConstants.PREF_HUAWEI_ACCOUNT, ""); .getString(HuaweiConstants.PREF_HUAWEI_ACCOUNT, "").trim();
try { try {
return new AccountRelated.SendExtendedAccountToDevice.Request( return new AccountRelated.SendExtendedAccountToDevice.Request(
paramsProvider, paramsProvider,

View File

@ -2813,5 +2813,5 @@
<string name="pref_sleepasandroid_feat_oximetry">Oximetry</string> <string name="pref_sleepasandroid_feat_oximetry">Oximetry</string>
<string name="pref_sleepasandroid_feat_spo2">SPO2</string> <string name="pref_sleepasandroid_feat_spo2">SPO2</string>
<string name="pref_title_huawei_account">Huawei Account</string> <string name="pref_title_huawei_account">Huawei Account</string>
<string name="pref_summary_huawei_account">Huawei account user in pairing process. Setting it allows to pair without factory reset.</string> <string name="pref_summary_huawei_account">Huawei account used in pairing process. Setting it allows to pair without factory reset.</string>
</resources> </resources>