Skip to content

Commit

Permalink
update: flutter 3.16.5
Browse files Browse the repository at this point in the history
  • Loading branch information
YumNumm committed Dec 22, 2023
1 parent eea1a9e commit 583f455
Show file tree
Hide file tree
Showing 5 changed files with 74 additions and 80 deletions.
2 changes: 1 addition & 1 deletion .fvm/fvm_config.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"flutterSdkVersion": "3.16.4",
"flutterSdkVersion": "3.16.5",
"flavors": {}
}
12 changes: 6 additions & 6 deletions ios/Runner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 1084;
CURRENT_PROJECT_VERSION = 1086;
DEVELOPMENT_TEAM = "";
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = CPL7H8SHVM;
ENABLE_BITCODE = NO;
Expand Down Expand Up @@ -552,7 +552,7 @@
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 1084;
CURRENT_PROJECT_VERSION = 1086;
DEVELOPMENT_TEAM = "";
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = CPL7H8SHVM;
ENABLE_USER_SCRIPT_SANDBOXING = YES;
Expand Down Expand Up @@ -594,7 +594,7 @@
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 1084;
CURRENT_PROJECT_VERSION = 1086;
DEVELOPMENT_TEAM = "";
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = CPL7H8SHVM;
ENABLE_USER_SCRIPT_SANDBOXING = YES;
Expand Down Expand Up @@ -635,7 +635,7 @@
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 1084;
CURRENT_PROJECT_VERSION = 1086;
DEVELOPMENT_TEAM = "";
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = CPL7H8SHVM;
ENABLE_USER_SCRIPT_SANDBOXING = YES;
Expand Down Expand Up @@ -779,7 +779,7 @@
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 1084;
CURRENT_PROJECT_VERSION = 1086;
DEVELOPMENT_TEAM = "";
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = CPL7H8SHVM;
ENABLE_BITCODE = NO;
Expand Down Expand Up @@ -811,7 +811,7 @@
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 1084;
CURRENT_PROJECT_VERSION = 1086;
DEVELOPMENT_TEAM = "";
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = CPL7H8SHVM;
ENABLE_BITCODE = NO;
Expand Down
2 changes: 1 addition & 1 deletion ios/Runner/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1084</string>
<string>1086</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UIApplicationSupportsIndirectInputEvents</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import 'package:eqmonitor/feature/settings/children/config/notification/children
import 'package:eqmonitor/feature/settings/children/config/notification/notifiication_settings_view_model.dart';
import 'package:eqmonitor/feature/settings/component/settings_section_header.dart';
import 'package:eqmonitor/gen/fonts.gen.dart';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter_hooks/flutter_hooks.dart';
Expand Down Expand Up @@ -186,75 +185,72 @@ class _OnNotificationPermissionAllowed extends ConsumerWidget {
title: const Text('お知らせ'),
subtitle: const Text('アップデート情報や開発者からのお知らせをお伝えします'),
),
if (kDebugMode) ...[
const SettingsSectionHeader(text: 'FCM DEBUG'),
Consumer(
builder: (context, ref, _) {
final notificationTokenState =
ref.watch(notificationTokenProvider);
return notificationTokenState.when(
data: (value) => Column(
children: [
ListTile(
title: const Text(
'FCM デバイストークン',
style: TextStyle(
fontFamily: FontFamily.jetBrainsMono,
),
const SettingsSectionHeader(text: 'FCM DEBUG'),
Consumer(
builder: (context, ref, _) {
final notificationTokenState = ref.watch(notificationTokenProvider);
return notificationTokenState.when(
data: (value) => Column(
children: [
ListTile(
title: const Text(
'FCM デバイストークン',
style: TextStyle(
fontFamily: FontFamily.jetBrainsMono,
),
trailing: Text(
value.fcmToken?.obfuscate ?? '不明',
style: const TextStyle(
fontFamily: FontFamily.jetBrainsMono,
),
),
trailing: Text(
value.fcmToken?.obfuscate ?? '不明',
style: const TextStyle(
fontFamily: FontFamily.jetBrainsMono,
),
onTap: () => Clipboard.setData(
ClipboardData(text: value.fcmToken ?? ''),
).then((_) {
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(
content: Text('コピーしました'),
),
);
}),
visualDensity: VisualDensity.compact,
),
ListTile(
title: const Text(
'APNS デバイストークン',
style: TextStyle(
fontFamily: FontFamily.jetBrainsMono,
onTap: () => Clipboard.setData(
ClipboardData(text: value.fcmToken ?? ''),
).then((_) {
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(
content: Text('コピーしました'),
),
);
}),
visualDensity: VisualDensity.compact,
),
ListTile(
title: const Text(
'APNS デバイストークン',
style: TextStyle(
fontFamily: FontFamily.jetBrainsMono,
),
trailing: Text(
value.apnsToken?.obfuscate ?? '不明',
style: const TextStyle(
fontFamily: FontFamily.jetBrainsMono,
),
),
trailing: Text(
value.apnsToken?.obfuscate ?? '不明',
style: const TextStyle(
fontFamily: FontFamily.jetBrainsMono,
),
onTap: () => Clipboard.setData(
ClipboardData(text: value.apnsToken ?? ''),
).then((_) {
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(
content: Text('コピーしました'),
),
);
}),
visualDensity: VisualDensity.compact,
),
],
),
error: (error, stackTrace) => Text(
'エラーが発生しました: $error',
),
loading: () => const Center(
child: CircularProgressIndicator.adaptive(),
),
);
},
),
],
onTap: () => Clipboard.setData(
ClipboardData(text: value.apnsToken ?? ''),
).then((_) {
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(
content: Text('コピーしました'),
),
);
}),
visualDensity: VisualDensity.compact,
),
],
),
error: (error, stackTrace) => Text(
'エラーが発生しました: $error',
),
loading: () => const Center(
child: CircularProgressIndicator.adaptive(),
),
);
},
),
],
);
}
Expand Down
16 changes: 7 additions & 9 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -910,28 +910,26 @@ packages:
maplibre_gl:
dependency: "direct main"
description:
path: "."
ref: "0bf326044759dfc2f590a1c219d2f1eb86e7b8ad"
resolved-ref: "0bf326044759dfc2f590a1c219d2f1eb86e7b8ad"
url: "git@github.com:YumNumm/flutter-maplibre-gl.git"
source: git
path: "../flutter-maplibre-gl"
relative: true
source: path
version: "0.18.0"
maplibre_gl_platform_interface:
dependency: transitive
description:
path: maplibre_gl_platform_interface
ref: main
resolved-ref: a41833c3f102288381931fe616c159e7a5bc5c52
url: "/~https://github.com/maplibre/flutter-maplibre-gl.git"
resolved-ref: "9215375e2c74529222a1b6e37a8f87b856d36f23"
url: "/~https://github.com/YumNumm/flutter-maplibre-gl.git"
source: git
version: "0.18.0"
maplibre_gl_web:
dependency: transitive
description:
path: maplibre_gl_web
ref: main
resolved-ref: a41833c3f102288381931fe616c159e7a5bc5c52
url: "/~https://github.com/maplibre/flutter-maplibre-gl.git"
resolved-ref: "9215375e2c74529222a1b6e37a8f87b856d36f23"
url: "/~https://github.com/YumNumm/flutter-maplibre-gl.git"
source: git
version: "0.18.0"
markdown:
Expand Down

0 comments on commit 583f455

Please sign in to comment.