Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix small bug #296

Merged
merged 2 commits into from
Jul 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ios/FluffyChat Share/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleDisplayName</key>
<string>FluffyChat Share</string>
<string>Twake Share</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
Expand Down
20 changes: 10 additions & 10 deletions ios/Runner/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>fluffychat</string>
<string>Twake</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
Expand Down Expand Up @@ -59,27 +59,27 @@
<key>NSBluetoothPeripheralUsageDescription</key>
<string>Play audio and voice messages on bluetooth devices</string>
<key>NSCalendarsUsageDescription</key>
<string>Share calendar dates with your contacts in FluffyChat.</string>
<string>Share calendar dates with your contacts in Twake.</string>
<key>NSCameraUsageDescription</key>
<string>Open the camera and take a picture to share them with your contacts on FluffyChat.</string>
<string>Open the camera and take a picture to share them with your contacts on Twake.</string>
<key>NSContactsUsageDescription</key>
<string>Share contacts with your contacts in FluffyChat.</string>
<string>Share contacts with your contacts in Twake.</string>
<key>NSFaceIDUsageDescription</key>
<string>FluffyChat uses an app lock for an additional security level</string>
<string>Twake uses an app lock for an additional security level</string>
<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
<string>Share your location with your contacts in FluffyChat.</string>
<string>Share your location with your contacts in Twake.</string>
<key>NSLocationAlwaysUsageDescription</key>
<string>Share your location with your contacts in FluffyChat.</string>
<string>Share your location with your contacts in Twake.</string>
<key>NSLocationWhenInUseUsageDescription</key>
<string>Share your location with your contacts in FluffyChat.</string>
<string>Share your location with your contacts in Twake.</string>
<key>NSMicrophoneUsageDescription</key>
<string>Record voice message and share them with your contacts on Twake.</string>
<key>NSMotionUsageDescription</key>
<string>Share motions with your contacts in FluffyChat.</string>
<string>Share motions with your contacts in Twake.</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>Open photos from your gallery and share them with your contacts on Twake.</string>
<key>NSSpeechRecognitionUsageDescription</key>
<string>Share data with your contacts in FluffyChat.</string>
<string>Share data with your contacts in Twake.</string>
<key>NSPhotoLibraryAddUsageDescription</key>
<string> Save photos/videos to device on Twake.</string>
<key>UIApplicationSupportsIndirectInputEvents</key>
Expand Down
3 changes: 0 additions & 3 deletions lib/utils/background_push.dart
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,6 @@ class BackgroundPush {
if (deviceAppId.length > 64) {
deviceAppId = deviceAppId.substring(0, 64);
}
if (!useDeviceSpecificAppId && PlatformInfos.isAndroid) {
appId += '.data_message';
}
final thisAppId = useDeviceSpecificAppId ? deviceAppId : appId;
if (gatewayUrl != null && token != null) {
final currentPushers = pushers.where((pusher) => pusher.pushkey == token);
Expand Down
Loading