1.更换包名

2.更换 APP 名字
This commit is contained in:
2026-06-30 13:38:16 +08:00
parent 8570486798
commit d056d28d83
18 changed files with 97 additions and 97 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ class AppConfig {
static late EnvironmentValues current;
static AppPackageInfo? packageInfo;
static const appName = '飞行极控录像工作台';
static const appName = '酷跑录像工作台';
static const designSize = Size(375, 812);
static void configure({
+1 -1
View File
@@ -60,7 +60,7 @@ class AppPlatformInfo {
AppPlatformInfo._();
static const MethodChannel _channel = MethodChannel(
'com.dronex.rec/platform_info',
'com.run.sportsx/platform_info',
);
static Future<AppPackageInfo> packageInfo() async {
@@ -1,5 +1,5 @@
abstract final class RecordingChannelNames {
static const packageName = 'com.dronex.rec';
static const packageName = 'com.run.sportsx';
static const method = '$packageName/recording';
static const events = '$packageName/recording_events';
}