Jump to content

Krzy

Members
  • Content Count

    10
  • Joined

  • Last visited

Community Reputation

1 Neutral
  1. Krzy

    Using iosApi.Foundation

    Of course, there was a comma missing !!! Thank you so much
  2. Krzy

    Using iosApi.Foundation

    When I wrote in Delphi: uses iOSapi.Foundation; I got "identifier iOSapi not found". This is a main problem. 
  3. Krzy

    Using iosApi.Foundation

    How to add the iosapi.foundation to delphi 11.2 ? I would like to get app version iOS app like below: uses Macapi.Helpers, iOSapi.Foundation; <<<<<< This is my problem function GetAppVersion: string; var LValueObject: Pointer; begin Result := ''; LValueObject := TNSBundle.Wrap(TNSBundle.OCClass.mainBundle).infoDictionary.objectForKey(StringToID('CFBundleVersion')); if LValueObject <> nil then Result := NSStrToStr(TNSString.Wrap(LValueObject)); end;
  4. Krzy

    Cannot update LunchImege Icon for iPhone

    Change CFBundleIdentifier > Work well. Thank you very much.
  5. Krzy

    Cannot update LunchImege Icon for iPhone

    No. I left the default
  6. Delphi 11.2 Patch 1 I cannot update LunchIcon in Project > Options > Icons > Target iOS > All config When I changed $(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImage_2x.png to may own first time - it work well. But when I changed it again - it does not work. Even I clean this field - always got the same icon. Another icon work well.
  7. Krzy

    Upload Google Play android FMX app problem

    Work well. Thank you very much
  8. Krzy

    Upload Google Play android FMX app problem

    I did it. But when I click Menu > Project > Deploy , Delphi update file AndroidManifest.xml and delete this line.
  9. Krzy

    Upload Google Play android FMX app problem

    Yes. There is no solution to the problem.
  10. Hi When I try to upload .abb file (FMX app) I got: (Delphi 11.2) You uploaded an APK or Android App Bundle which has an activity, activity alias, service or broadcast receiver with intent filter, but without the 'android:exported' property set. This file can't be installed on Android 12 or higher. See: developer.android.com/about/versions/12/behavior-changes-12#exported How can I fix it ??
×