Tyler-Larkin
Tyler-Larkin
Hello @amruth-movano sorry for the delayed reply. WorkManager is destroying the Flutter engine which triggers the native Android dispose/cleanup logic which leaves us with uninitialized properties, you can see a...
Hello @giulitu95, thanks for taking the time to open this issue. Could you please provide a sample schema and code snippet to help us reproduce this issue.
Hello @giulitu95, thank you for the update. Since gmpassos has provided a fix for the statistics package and Amplify DataStore is providing the expected error message, I will close this...
Hello @giulitu95, you are correct. I will keep this issue open as a bug to create validate our models via an assert or exception if an unsupported values such as...
Hello @keithrz, thanks for pinging this feature request as we cannot implement the feature via the Amplify Flutter project. We are transferring this feature request over to the Amplify CLI...
Hello @naveenthontepu, unfortunately we do not support this feature. However as described in the last paragraph [here](https://docs.aws.amazon.com/push-notifications/latest/userguide/reference-send-message.html) you can handle data messages to display local notifications. Using `flutter_local_notifications: ^19.0.0` and...
I set `Amplify.Notifications.Push.onNotificationReceivedInBackground` to call back to the global function `_handleDataMessage` defined below. `_handleDataMessage` will parse the MessageData and create a local notification using Android's `BigPictureStyle`. ``` @pragma("vm:entry-point") Future _handleDataMessage(PushNotificationMessage...
Hello @naveenthontepu, we are using a library from Amplify Android for displaying the local notification and they only support [BigTextStyle](https://github.com/aws-amplify/amplify-android/blob/426b2e1e7dabe05e2c8400aa202e8d8a422a57a4/aws-push-notifications-pinpoint-common/src/main/java/com/amplifyframework/pushnotifications/pinpoint/PushNotificationsUtils.kt#L140) at this time. I'm reaching out to them to see...
Hello @naveenthontepu, I've reached out to the Amplify Android team and they confirmed they are also getting feature requests to support the customization of Pinpoint notifications. We are going to...
Hello @naveenthontepu, sorry for the confusion. You bring up a good point that if your use case falls outside the scope of Amplify's API, then there is not much to...