|
|
@ -8,12 +8,14 @@ import 'package:flutter/cupertino.dart';
|
|
|
|
import 'package:flutter_background_service/flutter_background_service.dart';
|
|
|
|
import 'package:flutter_background_service/flutter_background_service.dart';
|
|
|
|
import 'package:get/get.dart';
|
|
|
|
import 'package:get/get.dart';
|
|
|
|
import 'package:project_telephony/utils/user_tool.dart';
|
|
|
|
import 'package:project_telephony/utils/user_tool.dart';
|
|
|
|
|
|
|
|
import 'package:project_telephony/utils/hive_store.dart';
|
|
|
|
|
|
|
|
|
|
|
|
import 'package:provider/provider.dart';
|
|
|
|
import 'package:provider/provider.dart';
|
|
|
|
import 'package:shared_preferences/shared_preferences.dart';
|
|
|
|
import 'package:shared_preferences/shared_preferences.dart';
|
|
|
|
import 'package:telephony/telephony.dart';
|
|
|
|
import 'package:telephony/telephony.dart';
|
|
|
|
|
|
|
|
|
|
|
|
import '../../providers/user_provider.dart';
|
|
|
|
import '../../providers/user_provider.dart';
|
|
|
|
|
|
|
|
import '../../utils/user_tool.dart';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -55,19 +57,25 @@ void onStart(ServiceInstance service) async {
|
|
|
|
String? phoneNum="";
|
|
|
|
String? phoneNum="";
|
|
|
|
int? callRecords=0;
|
|
|
|
int? callRecords=0;
|
|
|
|
String callState;
|
|
|
|
String callState;
|
|
|
|
// bool? kg= false;
|
|
|
|
service.on('stopService').listen((event) {
|
|
|
|
|
|
|
|
service.stopSelf();
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
final Future<SharedPreferences> _prefs = SharedPreferences.getInstance();
|
|
|
|
|
|
|
|
final SharedPreferences prefs = await _prefs;
|
|
|
|
|
|
|
|
// bool? kg=prefs.getBool("kg");
|
|
|
|
|
|
|
|
// print(kg);
|
|
|
|
|
|
|
|
Timer.periodic(const Duration(seconds: 1), (timer) async {
|
|
|
|
Timer.periodic(const Duration(seconds: 1), (timer) async {
|
|
|
|
|
|
|
|
final SharedPreferences prefs = await SharedPreferences.getInstance();
|
|
|
|
CallState state = await Telephony.instance.callState;
|
|
|
|
CallState state = await Telephony.instance.callState;
|
|
|
|
callState = state.name;
|
|
|
|
callState = state.name;
|
|
|
|
String? ref=prefs.getString('refSms');
|
|
|
|
String? ref=prefs.getString('refSms');
|
|
|
|
String? con=prefs.getString('conSms');
|
|
|
|
String? con=prefs.getString('conSms');
|
|
|
|
print(ref);
|
|
|
|
print(ref);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// bool? kg= prefs.getBool("kg");
|
|
|
|
|
|
|
|
// // bool? kg= prefs.getBool("kg");
|
|
|
|
|
|
|
|
print("这是数据${prefs.getBool("kg")}");
|
|
|
|
|
|
|
|
// print("这是数据$kg");
|
|
|
|
|
|
|
|
// kg = UserTool.userProvider.kg;
|
|
|
|
|
|
|
|
// print("这是数据${prefs.getBool("kg")}");
|
|
|
|
|
|
|
|
// print(callState!+" $flag");
|
|
|
|
if (callState == "IDLE") {
|
|
|
|
if (callState == "IDLE") {
|
|
|
|
if (flag != 0) {
|
|
|
|
if (flag != 0) {
|
|
|
|
flag = 0;
|
|
|
|
flag = 0;
|
|
|
@ -84,6 +92,12 @@ void onStart(ServiceInstance service) async {
|
|
|
|
// // }
|
|
|
|
// // }
|
|
|
|
// }else{
|
|
|
|
// }else{
|
|
|
|
// print("没接通");
|
|
|
|
// print("没接通");
|
|
|
|
|
|
|
|
if(callRecords!=0){
|
|
|
|
|
|
|
|
print("接通了");
|
|
|
|
|
|
|
|
Telephony.backgroundInstance.sendSms(to: phoneNum!, message: "接通了");
|
|
|
|
|
|
|
|
}else{
|
|
|
|
|
|
|
|
print("没接通");
|
|
|
|
|
|
|
|
Telephony.backgroundInstance.sendSms(to: phoneNum!, message: "接通了");
|
|
|
|
// if(kg!) {
|
|
|
|
// if(kg!) {
|
|
|
|
// Telephony.backgroundInstance.sendSms(to: phoneNum!, message: "没接通");
|
|
|
|
// Telephony.backgroundInstance.sendSms(to: phoneNum!, message: "没接通");
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|