fix:修复华为拒审的问题
This commit is contained in:
parent
7703f5949e
commit
2eac3ee478
@ -7,22 +7,19 @@ import 'package:star_lock/mine/addLock/addLock/addLock_state.dart';
|
|||||||
import 'package:star_lock/tools/baseGetXController.dart';
|
import 'package:star_lock/tools/baseGetXController.dart';
|
||||||
import 'package:star_lock/widget/permission/permission_dialog.dart';
|
import 'package:star_lock/widget/permission/permission_dialog.dart';
|
||||||
|
|
||||||
|
|
||||||
class AddLockLogic extends BaseGetXController {
|
class AddLockLogic extends BaseGetXController {
|
||||||
final AddLockState state = AddLockState();
|
final AddLockState state = AddLockState();
|
||||||
|
|
||||||
|
|
||||||
//跳转到附近的锁页面先判断权限
|
//跳转到附近的锁页面先判断权限
|
||||||
Future<void> getNearByLimits() async {
|
Future<void> getNearByLimits() async {
|
||||||
if (!Platform.isIOS) {
|
if (!Platform.isIOS) {
|
||||||
bool bluetoothRequest = await PermissionDialog.requestBluetooth();
|
final bool locationRequest = await PermissionDialog.request(Permission.location);
|
||||||
bool locationRequest = await PermissionDialog.request(Permission.location);
|
final bool bluetoothRequest = await PermissionDialog.requestBluetooth();
|
||||||
if (!bluetoothRequest || !locationRequest) {
|
if (!bluetoothRequest || !locationRequest) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Get.toNamed(Routers.nearbyLockPage);
|
Get.toNamed(Routers.nearbyLockPage);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
import 'dart:async';
|
import 'dart:async';
|
||||||
import 'dart:convert';
|
import 'dart:convert';
|
||||||
import 'dart:io';
|
import 'dart:io';
|
||||||
@ -9,6 +8,7 @@ import 'package:date_format/date_format.dart';
|
|||||||
import 'package:file_picker/file_picker.dart';
|
import 'package:file_picker/file_picker.dart';
|
||||||
import 'package:flutter_blue_plus/flutter_blue_plus.dart';
|
import 'package:flutter_blue_plus/flutter_blue_plus.dart';
|
||||||
import 'package:get/get.dart';
|
import 'package:get/get.dart';
|
||||||
|
import 'package:permission_handler/permission_handler.dart';
|
||||||
import 'package:star_lock/blue/io_protocol/io_getPrivateKey.dart';
|
import 'package:star_lock/blue/io_protocol/io_getPrivateKey.dart';
|
||||||
import 'package:star_lock/blue/io_protocol/io_getPublicKey.dart';
|
import 'package:star_lock/blue/io_protocol/io_getPublicKey.dart';
|
||||||
import 'package:star_lock/blue/io_protocol/io_otaUpgrade.dart';
|
import 'package:star_lock/blue/io_protocol/io_otaUpgrade.dart';
|
||||||
@ -45,15 +45,8 @@ class NearbyLockLogic extends BaseGetXController {
|
|||||||
// 点击连接设备
|
// 点击连接设备
|
||||||
void connect(String deviceName) {
|
void connect(String deviceName) {
|
||||||
showTitleEasyLoading('获取锁信息 1/3');
|
showTitleEasyLoading('获取锁信息 1/3');
|
||||||
// if(state.sureBtnState.value == 1){
|
|
||||||
// return;
|
|
||||||
// }
|
|
||||||
// state.sureBtnState.value = 1;
|
|
||||||
|
|
||||||
// showEasyLoading();
|
|
||||||
showBlueConnetctToastTimer(action: () {
|
showBlueConnetctToastTimer(action: () {
|
||||||
dismissEasyLoading();
|
dismissEasyLoading();
|
||||||
// state.sureBtnState.value = 0;
|
|
||||||
});
|
});
|
||||||
BlueManage().blueSendData(deviceName,
|
BlueManage().blueSendData(deviceName,
|
||||||
(BluetoothConnectionState state) async {
|
(BluetoothConnectionState state) async {
|
||||||
@ -71,7 +64,7 @@ class NearbyLockLogic extends BaseGetXController {
|
|||||||
_replySubscription =
|
_replySubscription =
|
||||||
EventBusManager().eventBus!.on<Reply>().listen((Reply reply) {
|
EventBusManager().eventBus!.on<Reply>().listen((Reply reply) {
|
||||||
if (reply is GetPublicKeyReply) {
|
if (reply is GetPublicKeyReply) {
|
||||||
_replyGetPublicKey(reply);
|
_replyGetPublicKey(reply);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (reply is GetPrivateKeyReply) {
|
if (reply is GetPrivateKeyReply) {
|
||||||
@ -103,8 +96,6 @@ class NearbyLockLogic extends BaseGetXController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Future<void> _replyGetPublicKey(Reply reply) async {
|
Future<void> _replyGetPublicKey(Reply reply) async {
|
||||||
// dismissEasyLoading();
|
|
||||||
|
|
||||||
// 获取公钥
|
// 获取公钥
|
||||||
switch (reply.status) {
|
switch (reply.status) {
|
||||||
case 0x00:
|
case 0x00:
|
||||||
@ -127,7 +118,6 @@ class NearbyLockLogic extends BaseGetXController {
|
|||||||
needAuthor: 1);
|
needAuthor: 1);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
// state.sureBtnState.value = 0;
|
|
||||||
AppLog.log('获取公钥失败');
|
AppLog.log('获取公钥失败');
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -142,7 +132,8 @@ class NearbyLockLogic extends BaseGetXController {
|
|||||||
|
|
||||||
// 私钥
|
// 私钥
|
||||||
final List<int> privateKey = reply.data.sublist(0, 16);
|
final List<int> privateKey = reply.data.sublist(0, 16);
|
||||||
final List<String> savePrivateKeyList = changeIntListToStringList(privateKey);
|
final List<String> savePrivateKeyList =
|
||||||
|
changeIntListToStringList(privateKey);
|
||||||
Storage.setStringList(saveBluePrivateKey, savePrivateKeyList);
|
Storage.setStringList(saveBluePrivateKey, savePrivateKeyList);
|
||||||
|
|
||||||
// signKey
|
// signKey
|
||||||
@ -160,7 +151,6 @@ class NearbyLockLogic extends BaseGetXController {
|
|||||||
_getStarLockStatus();
|
_getStarLockStatus();
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
// state.sureBtnState.value = 0;
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -170,7 +160,7 @@ class NearbyLockLogic extends BaseGetXController {
|
|||||||
final int status = reply.data[2];
|
final int status = reply.data[2];
|
||||||
switch (status) {
|
switch (status) {
|
||||||
case 0x00:
|
case 0x00:
|
||||||
//成功
|
//成功
|
||||||
AppLog.log('获取锁状态成功');
|
AppLog.log('获取锁状态成功');
|
||||||
// 厂商名称
|
// 厂商名称
|
||||||
int index = 3;
|
int index = 3;
|
||||||
@ -196,14 +186,14 @@ class NearbyLockLogic extends BaseGetXController {
|
|||||||
AppLog.log('产品名称 mmodelStr:$modelStr');
|
AppLog.log('产品名称 mmodelStr:$modelStr');
|
||||||
|
|
||||||
// 软件版本
|
// 软件版本
|
||||||
final List<int> fwVersion = reply.data.sublist(index, index+20);
|
final List<int> fwVersion = reply.data.sublist(index, index + 20);
|
||||||
final String fwVersionStr = utf8String(fwVersion);
|
final String fwVersionStr = utf8String(fwVersion);
|
||||||
state.lockInfo['fwVersion'] = fwVersionStr;
|
state.lockInfo['fwVersion'] = fwVersionStr;
|
||||||
index = index + 20;
|
index = index + 20;
|
||||||
AppLog.log('软件版本 fwVersionStr:$fwVersionStr');
|
AppLog.log('软件版本 fwVersionStr:$fwVersionStr');
|
||||||
|
|
||||||
// 硬件版本
|
// 硬件版本
|
||||||
final List<int> hwVersion = reply.data.sublist(index, index+20);
|
final List<int> hwVersion = reply.data.sublist(index, index + 20);
|
||||||
final String hwVersionStr = utf8String(hwVersion);
|
final String hwVersionStr = utf8String(hwVersion);
|
||||||
state.lockInfo['hwVersion'] = hwVersionStr;
|
state.lockInfo['hwVersion'] = hwVersionStr;
|
||||||
index = index + 20;
|
index = index + 20;
|
||||||
@ -245,16 +235,18 @@ class NearbyLockLogic extends BaseGetXController {
|
|||||||
|
|
||||||
// 重置次数
|
// 重置次数
|
||||||
final List<int> restoreCounter = reply.data.sublist(index, index + 2);
|
final List<int> restoreCounter = reply.data.sublist(index, index + 2);
|
||||||
state.lockInfo['restoreCount'] = restoreCounter[0] * 256 + restoreCounter[1];
|
state.lockInfo['restoreCount'] =
|
||||||
|
restoreCounter[0] * 256 + restoreCounter[1];
|
||||||
index = index + 2;
|
index = index + 2;
|
||||||
AppLog.log('重置次数 restoreCounter:${restoreCounter[0] * 256 + restoreCounter[1]}');
|
AppLog.log(
|
||||||
|
'重置次数 restoreCounter:${restoreCounter[0] * 256 + restoreCounter[1]}');
|
||||||
|
|
||||||
// 重置时间
|
// 重置时间
|
||||||
final List<int> restoreDate = reply.data.sublist(index, index + 4);
|
final List<int> restoreDate = reply.data.sublist(index, index + 4);
|
||||||
final int restoreDateValue = (0xff & restoreDate[0]) << 24 |
|
final int restoreDateValue = (0xff & restoreDate[0]) << 24 |
|
||||||
(0xff & restoreDate[1]) << 16 |
|
(0xff & restoreDate[1]) << 16 |
|
||||||
(0xff & restoreDate[2]) << 8 |
|
(0xff & restoreDate[2]) << 8 |
|
||||||
(0xFF & restoreDate[3]);
|
(0xFF & restoreDate[3]);
|
||||||
// String restoreDateStr = DateTool().dateToYMDHNSString(restoreDateValue.toString());
|
// String restoreDateStr = DateTool().dateToYMDHNSString(restoreDateValue.toString());
|
||||||
state.lockInfo['restoreDate'] = restoreDateValue * 1000;
|
state.lockInfo['restoreDate'] = restoreDateValue * 1000;
|
||||||
index = index + 4;
|
index = index + 4;
|
||||||
@ -270,9 +262,9 @@ class NearbyLockLogic extends BaseGetXController {
|
|||||||
// 有效时间
|
// 有效时间
|
||||||
final List<int> indate = reply.data.sublist(index, index + 4);
|
final List<int> indate = reply.data.sublist(index, index + 4);
|
||||||
final int indateValue = (0xff & indate[0]) << 24 |
|
final int indateValue = (0xff & indate[0]) << 24 |
|
||||||
(0xff & indate[1]) << 16 |
|
(0xff & indate[1]) << 16 |
|
||||||
(0xff & indate[2]) << 8 |
|
(0xff & indate[2]) << 8 |
|
||||||
(0xFF & indate[3]);
|
(0xFF & indate[3]);
|
||||||
// String indateStr = DateTool().dateToYMDHNSString("$indateValue");
|
// String indateStr = DateTool().dateToYMDHNSString("$indateValue");
|
||||||
state.lockInfo['indate'] = indateValue * 1000;
|
state.lockInfo['indate'] = indateValue * 1000;
|
||||||
index = index + 4;
|
index = index + 4;
|
||||||
@ -286,7 +278,8 @@ class NearbyLockLogic extends BaseGetXController {
|
|||||||
AppLog.log('mac地址 macAddressStr:$macAddressStr');
|
AppLog.log('mac地址 macAddressStr:$macAddressStr');
|
||||||
|
|
||||||
//时区偏移
|
//时区偏移
|
||||||
state.lockInfo['timezoneOffset'] = DateTime.now().timeZoneOffset.inSeconds;
|
state.lockInfo['timezoneOffset'] =
|
||||||
|
DateTime.now().timeZoneOffset.inSeconds;
|
||||||
|
|
||||||
// 锁特征值字符串长度
|
// 锁特征值字符串长度
|
||||||
final int featureValueLength = reply.data[index];
|
final int featureValueLength = reply.data[index];
|
||||||
@ -300,7 +293,8 @@ class NearbyLockLogic extends BaseGetXController {
|
|||||||
showToast('锁数据异常,请重试');
|
showToast('锁数据异常,请重试');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
final List<int> featureValue = reply.data.sublist(index, index + featureValueLength);
|
final List<int> featureValue =
|
||||||
|
reply.data.sublist(index, index + featureValueLength);
|
||||||
final String featureValueStr = asciiString(featureValue);
|
final String featureValueStr = asciiString(featureValue);
|
||||||
state.featureValue = featureValueStr;
|
state.featureValue = featureValueStr;
|
||||||
// List allFeatureValueTwoList = charListChangeIntList(featureValue);
|
// List allFeatureValueTwoList = charListChangeIntList(featureValue);
|
||||||
@ -319,7 +313,8 @@ class NearbyLockLogic extends BaseGetXController {
|
|||||||
showToast('锁数据异常,请重试');
|
showToast('锁数据异常,请重试');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
final List<int> featureEnVal = reply.data.sublist(index, index + featureEnValLength);
|
final List<int> featureEnVal =
|
||||||
|
reply.data.sublist(index, index + featureEnValLength);
|
||||||
final String featureEnValStr = asciiString(featureEnVal);
|
final String featureEnValStr = asciiString(featureEnVal);
|
||||||
state.featureSettingValue = featureEnValStr;
|
state.featureSettingValue = featureEnValStr;
|
||||||
// List allFeatureEnValTwoList = charListChangeIntList(featureEnVal);
|
// List allFeatureEnValTwoList = charListChangeIntList(featureEnVal);
|
||||||
@ -344,14 +339,11 @@ class NearbyLockLogic extends BaseGetXController {
|
|||||||
|
|
||||||
break;
|
break;
|
||||||
case 0x06:
|
case 0x06:
|
||||||
//无权限
|
//无权限
|
||||||
final List<String>? privateKey = await Storage.getStringList(saveBluePrivateKey);
|
final List<String>? privateKey =
|
||||||
final List<int> getPrivateKeyList = changeStringListToIntList(privateKey!);
|
await Storage.getStringList(saveBluePrivateKey);
|
||||||
// IoSenderManage.senderGetLockStatu(
|
final List<int> getPrivateKeyList =
|
||||||
// lockID:BlueManage().connectDeviceName,
|
changeStringListToIntList(privateKey!);
|
||||||
// userID:await Storage.getUid(),
|
|
||||||
// privateKey:getPrivateKeyList,
|
|
||||||
// );
|
|
||||||
IoSenderManage.senderGetStarLockStatuInfo(
|
IoSenderManage.senderGetStarLockStatuInfo(
|
||||||
lockID: BlueManage().connectDeviceName,
|
lockID: BlueManage().connectDeviceName,
|
||||||
userID: await Storage.getUid(),
|
userID: await Storage.getUid(),
|
||||||
@ -362,8 +354,7 @@ class NearbyLockLogic extends BaseGetXController {
|
|||||||
);
|
);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
//失败
|
//失败
|
||||||
// state.sureBtnState.value = 0;
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -376,12 +367,16 @@ class NearbyLockLogic extends BaseGetXController {
|
|||||||
// dismissEasyLoading();
|
// dismissEasyLoading();
|
||||||
|
|
||||||
AppLog.log('开始获取锁状态');
|
AppLog.log('开始获取锁状态');
|
||||||
final List<String>? privateKey = await Storage.getStringList(saveBluePrivateKey);
|
final List<String>? privateKey =
|
||||||
|
await Storage.getStringList(saveBluePrivateKey);
|
||||||
final List<int> getPrivateKeyList = changeStringListToIntList(privateKey!);
|
final List<int> getPrivateKeyList = changeStringListToIntList(privateKey!);
|
||||||
|
|
||||||
|
final String getUTCDate = formatDate(
|
||||||
final String getUTCDate = formatDate(DateTime.fromMillisecondsSinceEpoch(state.serverTime*1000), <String>[yyyy, '-', mm, '-', dd, ' ', HH, ':', nn, ':', ss]);
|
DateTime.fromMillisecondsSinceEpoch(state.serverTime * 1000),
|
||||||
final String getLocalDate = formatDate(DateTime.fromMillisecondsSinceEpoch(getLocalTime()*1000), <String>[yyyy, '-', mm, '-', dd, ' ', HH, ':', nn, ':', ss]);
|
<String>[yyyy, '-', mm, '-', dd, ' ', HH, ':', nn, ':', ss]);
|
||||||
|
final String getLocalDate = formatDate(
|
||||||
|
DateTime.fromMillisecondsSinceEpoch(getLocalTime() * 1000),
|
||||||
|
<String>[yyyy, '-', mm, '-', dd, ' ', HH, ':', nn, ':', ss]);
|
||||||
|
|
||||||
AppLog.log('state.serverTime:${state.serverTime} getUTCDate:$getUTCDate '
|
AppLog.log('state.serverTime:${state.serverTime} getUTCDate:$getUTCDate '
|
||||||
'getLocalTime:${getLocalTime()} getLocalDate:$getLocalDate '
|
'getLocalTime:${getLocalTime()} getLocalDate:$getLocalDate '
|
||||||
@ -394,10 +389,6 @@ class NearbyLockLogic extends BaseGetXController {
|
|||||||
isBeforeAddUser: true,
|
isBeforeAddUser: true,
|
||||||
privateKey: getPrivateKeyList,
|
privateKey: getPrivateKeyList,
|
||||||
);
|
);
|
||||||
// } else if (state == BluetoothConnectionState.disconnected) {
|
|
||||||
// dismissEasyLoading();
|
|
||||||
// }
|
|
||||||
// }, isAddEquipment: true);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void startScanBlueList() {
|
void startScanBlueList() {
|
||||||
@ -490,7 +481,7 @@ class NearbyLockLogic extends BaseGetXController {
|
|||||||
).packageData());
|
).packageData());
|
||||||
} else if (deviceConnectionState ==
|
} else if (deviceConnectionState ==
|
||||||
BluetoothConnectionState.disconnected) {}
|
BluetoothConnectionState.disconnected) {}
|
||||||
},isAddEquipment: true);
|
}, isAddEquipment: true);
|
||||||
}
|
}
|
||||||
|
|
||||||
//循环传输升级固件包
|
//循环传输升级固件包
|
||||||
@ -536,7 +527,7 @@ class NearbyLockLogic extends BaseGetXController {
|
|||||||
logic: this,
|
logic: this,
|
||||||
),
|
),
|
||||||
barrierDismissible: false)
|
barrierDismissible: false)
|
||||||
.then((value) => state.oTAProgressDialog = false);
|
.then((dynamic value) => state.oTAProgressDialog = false);
|
||||||
}
|
}
|
||||||
|
|
||||||
//清楚 ata 安装文件
|
//清楚 ata 安装文件
|
||||||
@ -632,9 +623,10 @@ class NearbyLockLogic extends BaseGetXController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 从服务器获取锁的时间 开锁时传入
|
// 从服务器获取锁的时间 开锁时传入
|
||||||
Future<void> getServerDatetime() async{
|
Future<void> getServerDatetime() async {
|
||||||
final GetServerDatetimeEntity entity = await ApiRepository.to.getServerDatetimeData(isUnShowLoading:false);
|
final GetServerDatetimeEntity entity =
|
||||||
if(entity.errorCode!.codeIsSuccessful){
|
await ApiRepository.to.getServerDatetimeData(isUnShowLoading: false);
|
||||||
|
if (entity.errorCode!.codeIsSuccessful) {
|
||||||
state.serverTime = entity.data!.date! ~/ 1000;
|
state.serverTime = entity.data!.date! ~/ 1000;
|
||||||
|
|
||||||
if (state.otaState.value) {
|
if (state.otaState.value) {
|
||||||
@ -642,12 +634,10 @@ class NearbyLockLogic extends BaseGetXController {
|
|||||||
} else {
|
} else {
|
||||||
connect(state.selectLockName.value);
|
connect(state.selectLockName.value);
|
||||||
}
|
}
|
||||||
// state.differentialTime = entity.data!.date! ~/ 1000 - DateTime.now().millisecondsSinceEpoch ~/ 1000;
|
|
||||||
// AppLog.log("entity.data!.date! ~/ 1000:${entity.data!.date! ~/ 1000} DateTime.now().millisecondsSinceEpoch ~/ 1000:${DateTime.now().millisecondsSinceEpoch ~/ 1000} 服务器时间差:${state.differentialTime}");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int getLocalTime(){
|
int getLocalTime() {
|
||||||
final DateTime now = DateTime.now();
|
final DateTime now = DateTime.now();
|
||||||
final Duration timeZoneOffset = now.timeZoneOffset;
|
final Duration timeZoneOffset = now.timeZoneOffset;
|
||||||
AppLog.log('timeZoneOffset.inSeconds:$timeZoneOffset.inSeconds');
|
AppLog.log('timeZoneOffset.inSeconds:$timeZoneOffset.inSeconds');
|
||||||
@ -657,9 +647,7 @@ class NearbyLockLogic extends BaseGetXController {
|
|||||||
@override
|
@override
|
||||||
void onReady() {
|
void onReady() {
|
||||||
super.onReady();
|
super.onReady();
|
||||||
_initReplySubscription();
|
getNearByLimits();
|
||||||
state.ifCurrentScreen.value = true;
|
|
||||||
startScanBlueList();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
@ -672,4 +660,18 @@ class NearbyLockLogic extends BaseGetXController {
|
|||||||
super.onClose();
|
super.onClose();
|
||||||
_replySubscription?.cancel();
|
_replySubscription?.cancel();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Future<void> getNearByLimits() async {
|
||||||
|
if (!Platform.isIOS) {
|
||||||
|
final bool bluetoothRequest = await PermissionDialog.requestBluetooth();
|
||||||
|
final bool locationRequest =
|
||||||
|
await PermissionDialog.request(Permission.location);
|
||||||
|
if (!bluetoothRequest || !locationRequest) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
_initReplySubscription();
|
||||||
|
state.ifCurrentScreen.value = true;
|
||||||
|
startScanBlueList();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -6,7 +6,6 @@ import 'package:flutter_screenutil/flutter_screenutil.dart';
|
|||||||
import 'package:get/get.dart';
|
import 'package:get/get.dart';
|
||||||
import 'package:star_lock/flavors.dart';
|
import 'package:star_lock/flavors.dart';
|
||||||
import '../../../app_settings/app_colors.dart';
|
import '../../../app_settings/app_colors.dart';
|
||||||
import '../../../blue/blue_manage.dart';
|
|
||||||
import '../../../tools/appRouteObserver.dart';
|
import '../../../tools/appRouteObserver.dart';
|
||||||
import '../../../tools/titleAppBar.dart';
|
import '../../../tools/titleAppBar.dart';
|
||||||
import '../../../translations/trans_lib.dart';
|
import '../../../translations/trans_lib.dart';
|
||||||
|
|||||||
@ -3,7 +3,6 @@ import 'package:get/get.dart';
|
|||||||
import 'package:permission_handler/permission_handler.dart';
|
import 'package:permission_handler/permission_handler.dart';
|
||||||
import 'package:star_lock/app_settings/app_settings.dart';
|
import 'package:star_lock/app_settings/app_settings.dart';
|
||||||
import 'package:star_lock/tools/storage.dart';
|
import 'package:star_lock/tools/storage.dart';
|
||||||
import 'package:star_lock/translations/trans_lib.dart';
|
|
||||||
|
|
||||||
class PermissionDialog {
|
class PermissionDialog {
|
||||||
static Map<Permission, String> titles = <Permission, String>{
|
static Map<Permission, String> titles = <Permission, String>{
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user