Browse Source

Projucer: Replaced a use of String::formatted() that was causing issues in the Android exporter

tags/2021-05-28
ed 5 years ago
parent
commit
74b19b94b0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Android.h

+ 1
- 1
extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Android.h View File

@@ -1442,7 +1442,7 @@ private:
if (arePushNotificationsEnabled())
{
defines.set ("JUCE_PUSH_NOTIFICATIONS", "1");
defines.set ("JUCE_PUSH_NOTIFICATIONS_ACTIVITY", String::formatted("\"%s\"", getJNIActivityClassName().toUTF8()));
defines.set ("JUCE_PUSH_NOTIFICATIONS_ACTIVITY", getJNIActivityClassName().quoted());
}
if (androidInAppBillingPermission.get())


Loading…
Cancel
Save