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

Receiving a push notification raises a Java exception on my Samsung phone #245

Open
MyBuzzTechnologies opened this issue Aug 28, 2024 · 10 comments
Assignees
Labels
bug Something isn't working

Comments

@MyBuzzTechnologies
Copy link
Sponsor

MyBuzzTechnologies commented Aug 28, 2024

In DW.FCMManager.Android.pas, the call to presentNotification() is raising a Java exception which is crashing my app.

Delphi 12.1, running the latest Kastri sources on a Samsung Note 20, Android 13.

procedure TPlatformFCMManager.MessageReceivedNotificationHandler(const Sender: TObject; const AMsg: TMessage);
var
  LIcon: string;
  LIntent: JIntent;
begin
  if ShowBannerIfForeground and IsForeground then
  begin
    LIntent := TMessageReceivedNotification(AMsg).Value;
    TOSMetadata.GetValue(cMetadataFCMDefaultNotificationIcon, LIcon);
    TJDWNotificationPresenter.JavaClass.presentNotification(TAndroidHelper.Context, LIntent, StringToJString(FChannelId), StrToIntDef(LIcon, 0));
  end;
end;

The error is:

java.lang.IllegalArgumentException: Invalid notification (no valid small icon): Notification(channel=MYSHIFTPLANNERv1 shortcut=null contentView=null vibrate=null sound=null defaults=0x0 flags=0x10 color=0x00000000 vis=PRIVATE semFlags=0x0 semPriority=0 semMissedCount=0)

Just before it, in the logcat output are these, which may be relevant:

Key com.google.firebase.messaging.default_notification_icon expected String but value was a java.lang.Integer. The default value <null> was returned.

and

DWNotificationPresenter	Unable to locate resource notification_custom
@DelphiWorlds DelphiWorlds self-assigned this Aug 28, 2024
@DelphiWorlds DelphiWorlds added the bug Something isn't working label Aug 28, 2024
@DelphiWorlds
Copy link
Owner

DWNotificationPresenter Unable to locate resource notification_custom

You can ignore this message - it just indicates that you're not using custom notifications

Key com.google.firebase.messaging.default_notification_icon expected String but value was a java.lang.Integer. The default value <null> was returned.

This one is a bit odd - can you show what you have for it in AndroidManifest.xml?

@MyBuzzTechnologies
Copy link
Sponsor Author

MyBuzzTechnologies commented Aug 28, 2024

The entries related to firebase are these:

<meta-data android:name="com.google.android.gms.version" android:value="12451000"/>
		<meta-data android:name="com.google.firebase.messaging.default_notification_color" android:value="" android:resource="@color/notification_accent_color"/>
		<meta-data android:name="com.google.firebase.messaging.default_notification_channel_id" android:value="MYSHIFTPLANNERv1"/>
		<meta-data android:name="com.google.firebase.messaging.default_notification_icon" android:value="" android:resource="@drawable/ic_notification"/>

and

		<service android:name="com.google.android.gms.ads.AdService" android:enabled="true" android:exported="false"/>
		<service android:exported="false" android:name="com.delphiworlds.kastri.DWFirebaseMessagingService">
			<intent-filter>
				<action android:name="com.google.firebase.MESSAGING_EVENT"/>
			</intent-filter>
		</service>
		<service android:name="com.google.firebase.components.ComponentDiscoveryService" android:directBootAware="true" android:exported="false">
			<meta-data android:name="com.google.firebase.components:com.google.firebase.analytics.connector.internal.AnalyticsConnectorRegistrar" android:value="com.google.firebase.components.ComponentRegistrar"/>
			<meta-data android:name="com.google.firebase.components:com.google.firebase.messaging.FirebaseMessagingRegistrar" android:value="com.google.firebase.components.ComponentRegistrar"/>
			<meta-data android:name="com.google.firebase.components:com.google.firebase.datatransport.TransportRegistrar" android:value="com.google.firebase.components.ComponentRegistrar"/>
			<meta-data android:name="com.google.firebase.components:com.google.firebase.installations.FirebaseInstallationsRegistrar" android:value="com.google.firebase.components.ComponentRegistrar"/>
		</service>

If these aren't what you meant, let me know

@DelphiWorlds
Copy link
Owner

DelphiWorlds commented Aug 28, 2024

Yes, this one in particular:

<meta-data android:name="com.google.firebase.messaging.default_notification_icon" android:value="" android:resource="@drawable/ic_notification"/>

I've now realized that this line of code might be incorrect:

  TOSMetadata.GetValue(cMetadataFCMDefaultNotificationIcon, LIcon);

Since LIcon is a string, and I expect if the resource is actually there, it's really an integer. Not sure why this hasn't been a problem before. Can you try changing the code so that LIcon is an Int64, thus meaning that it can be passed direct to presentNotification instead of using StrToIntDef.

Also, when including multiple lines of code on comment, you can use 3 backticks (```) at the beginning and end, and it also accepts a format specification for supported types at the beginning marker, like: ```xml and ```delphi etc.

@MyBuzzTechnologies
Copy link
Sponsor Author

Thanks Dave, I'll try that and report back.

I can never remember the correct markdown syntax for code so thanks for the reminder. I used 2 backticks so almost there!

@MyBuzzTechnologies
Copy link
Sponsor Author

Same error I'm afraid.

First chance exception at $0000006D7E6F474C. Exception class EJNIException with message 'java.lang.IllegalArgumentException: Invalid notification (no valid small icon): Notification(channel=MYSHIFTPLANNERv1 shortcut=null contentView=null vibrate=null sound=null defaults=0x0 flags=0x10 color=0x00000000 vis=PRIVATE semFlags=0x0 semPriority=0 semMissedCount=0)'. Process myShiftPlanner.apk (23820)

to confirm, the changed method is

procedure TPlatformFCMManager.MessageReceivedNotificationHandler(const Sender: TObject; const AMsg: TMessage);
var
  LIcon: Int64;
  LIntent: JIntent;
begin
  if ShowBannerIfForeground and IsForeground then
  begin
    LIntent := TMessageReceivedNotification(AMsg).Value;
    TOSMetadata.GetValue(cMetadataFCMDefaultNotificationIcon, LIcon);
    TJDWNotificationPresenter.JavaClass.presentNotification(TAndroidHelper.Context, LIntent, StringToJString(FChannelId), LIcon);
  end;
end;

@DelphiWorlds
Copy link
Owner

Perhaps you have no valid small icon? ;-) I'll see if I can find out what the issue is...

@MyBuzzTechnologies
Copy link
Sponsor Author

I've got them all listed in the project, so unless it's getting it from somewhere else then not sure what I'm looking for!

image

@DelphiWorlds
Copy link
Owner

It may be that the actual icons are not being deployed? One sure way to check is to look at the project output folder, e.g.:
image
This is for a project that was probably created with Delphi 11.x and later "upgraded" to 12.x, so I may be missing files, however those that Delphi is deploying work on my Pixel 6 Pro - I suspect you have either no ic_notification.png files being deployed, or missing the one your device needs.

@MyBuzzTechnologies
Copy link
Sponsor Author

I checked my deployment settings, output folder etc and it all seems correct. ic_notification.png is in the correct res folders, correct size and none are corrupt. Everything it needs seems to be there, so must be something else causing it not to be able to find the icons at runtime.
Your demo project seems to work fine on my phone too, so must be something in my app setup but no idea what it could be.
I'll keep digging. 👍

Thanks

@DelphiWorlds
Copy link
Owner

Sorry, I meant to comment here a few days ago when I pushed a fix. Can you check whether it works for you now?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants