You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
2.1 KiB
71 lines
2.1 KiB
import 'dart:io';
|
|
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter/services.dart';
|
|
|
|
import 'package:firebase_core/firebase_core.dart';
|
|
import 'package:firebase_crashlytics/firebase_crashlytics.dart';
|
|
import 'package:fluwx/fluwx.dart';
|
|
import 'package:jpush_flutter/jpush_flutter.dart';
|
|
import 'package:power_logger/power_logger.dart';
|
|
|
|
import 'package:aku_community/constants/app_theme.dart';
|
|
import 'package:aku_community/constants/config.dart';
|
|
|
|
class MainInitialize {
|
|
///初始化firebase
|
|
static Future initFirebase() async {
|
|
await Firebase.initializeApp();
|
|
// web MacOS Platform not support firebase
|
|
if (!kIsWeb && !Platform.isMacOS) {
|
|
FirebaseCrashlytics.instance
|
|
.setCrashlyticsCollectionEnabled(kReleaseMode);
|
|
}
|
|
FlutterError.onError = (detail) {
|
|
LoggerData.addData(detail);
|
|
if (kReleaseMode && !kIsWeb && !Platform.isMacOS) {
|
|
FirebaseCrashlytics.instance.recordFlutterError(detail);
|
|
}
|
|
FlutterError.presentError(detail);
|
|
};
|
|
}
|
|
|
|
static initTheme() {
|
|
SystemChrome.setSystemUIOverlayStyle(SystemStyle.initial);
|
|
}
|
|
|
|
static Future initJPush() async {
|
|
if (kIsWeb || Platform.isMacOS) return;
|
|
JPush jpush = new JPush();
|
|
Future<dynamic> Function(Map<String, dynamic>? message)? jPushLogger(
|
|
String type) {
|
|
return (Map<String, dynamic>? message) async {
|
|
LoggerData.addData({
|
|
'type': type,
|
|
'message': message,
|
|
});
|
|
};
|
|
}
|
|
|
|
jpush.addEventHandler(
|
|
onReceiveNotification: jPushLogger('onReceiveNotification'),
|
|
onOpenNotification: jPushLogger('onOpenNotification'),
|
|
onReceiveMessage: jPushLogger('onReceiveMessage'),
|
|
);
|
|
jpush.setup(
|
|
appKey: "6a2c6507e3e8b3187ac1c9f9",
|
|
channel: "developer-default",
|
|
production: false,
|
|
debug: true,
|
|
);
|
|
String? rID = await jpush.getRegistrationID();
|
|
LoggerData.addData(rID, tag: 'RegistrationID');
|
|
}
|
|
|
|
static initWechat() {
|
|
if (kIsWeb || Platform.isMacOS) return;
|
|
registerWxApi(appId: AppConfig.wechatAppId);
|
|
}
|
|
}
|