Jump to content

Shano

Members
  • Content Count

    19
  • Joined

  • Last visited

Everything posted by Shano

  1. Does anyone know how to speed up the Delphi 12.2 Debugger? I have an Android device connected to my Delphi, and if I set a breakpoint in the FormCreate and set a breakpointin the FormShow. It takes 4 minutes to reach the FormShow event, which is a ridiculous amount of time and makes debugging utterly useless. procedure TMainForm.FormCreate(Sender: TObject); var i : integer; begin // breakpoint here i := 0; end; procedure TMainForm.FormShow(Sender: TObject); begin // breakpoint here ShowMessage('FormShow'); end; If you run the application without debugging, it takes seconds to see the FormShow message on the screen. Thank you in advance.
  2. I, too, have been using Log.d and Monitor.bat I just thought there had to be a better way, as waiting for the debugger to start is such a waste of time.
  3. I tried all of the above and still had issues not seeing the development certificate in Delphi 12.2. I ended up creating a Test App in Xcode and installing that onto my iOS 18 device. I then closed everything down and restarted everything. I could then see the correct Provisioning Profile and certificate in my Delphi 12.2 Provisioning Area. I could then run my app in Delphi 12.2, which transferred my app to my iOS device successfully. The xcode Test App must have put everything required by the PAServer in the correct place.
  4. After wiping my MAC and reinstalling everything again with no luck, I ended up creating a test app in xcode using the certificates and then everything started working and I could then deploy my app to my iOS 18 device. The test project must have put everything in the right place required by the PAserver. On the bright side of life I now have an extremely clean MAC. 🙂
  5. Hi Dave, I have the same setup as you, thanks for the pointer regarding using 16.1 and not 16.2. When you say no debugging, do you mean you cannot create breakpoints, or can't even transfer the App to the iOS Device via running it with debug and the iOS device selected. I am asking, because I can build and create an ipa file that I can then use the transporter to upload without error, but I cannot click run and install the app onto my registered test devices. I keep getting an error 'Unable to find certificate' 'XXXXXX' in provisioning profile "ffdssdfsdfdsfdsfsdf"
  6. Turned out in the end I needed to follow these steps. Your applicationName.dproj needs to look like - <Platform Condition="'$(Platform)'==''">Android</Platform> <PlatformSDK Condition="'$(PlatformSDK)'=='' And '$(Platform)'=='Android64'">AndroidSDK26.1.1_64bit.sdk</PlatformSDK>
  7. I Have Delphi Athens installed and am trying to build a 64 bit app and I am gettting this message. [DCC Fatal Error] F1026 File not found: 'C:\Users\Public\Documents\Embarcadero\Studio\23.0\CatalogRepository\AndroidNDK-21-23.0.51961.7529\android-ndk-r21\toolchains\aarch64-linux-android-4.9\prebuilt\windows-x86_64\aarch64-linux-android\bin\ld.exe' I do not have a path C:\Users\Public\Documents\Embarcadero\Studio\23.0\CatalogRepository\AndroidNDK-21-23.0.51961.7529\android-ndk-r21 I have a C:\Users\Public\Documents\Embarcadero\Studio\23.0\CatalogRepository\AndroidNDK-21-23.0.53982.0329 path. I want to build Apps for iOS18 and Android 14 (API level 34) How do I fix this please.
  8. Thank you for the answer. Here is the translated answer I changed my dproj to '<Platform Condition="'$(Platform)'==''">Android64</Platform>'
  9. It is absolutely ridiculous that Embarcadero do not provide download links to the versions of the SDK and NDK that is compatible with each version of the Delphi IDE. There should be a Git Package for each Delphi Version. The amount of time I have wasted trying to get Delphi 12.2 to build an Android App which was previously building with Delphi 12.1 is just ridiculous! Does anyone have a List of Steps to follow that will work to upgrade the Delphi Delphi 12.2 SDK and NDK Currently I have this setup. Thank you in advance.
  10. Hi have a mobile app currently built using Delphi 12. My apple is a Mac Mini, Apple M1, Sonoma 14.2 The app can connect with the Rest server using HTTP, using Indy with no problems. When I run the iOS simulator, It failed to connect to the server. Are there any settings that I am unaware of that give the iOS Simulator access to HTTP connections? Thanks Shane
  11. @Dave NottageLooking into it further and I think it is because I do not include the required libraries: libcrypto and libssl when deploying the app. Is there any easy way to do this? Can I just put the files on the mac in the scratch-dir? Can I download the compiled versions of the files from anywhere or do I have to go through the process of compiling them myself? When you follow Embarcadero's link to get the files, the first thing I read is "I urge you to not use this project" 🙂 Thanks
  12. Hi, I am using Delphi 12 I decided to try the iOS simulator out which was a huge mistake, because now I cannot deploy my release App. When I deploy Delphi keeps trying to deploy to the iOS simulator it seems. Anyone know how to fix this issue? [PAClient Error] Error: E6664 /Users/MyUserName/PAServer/scratch-dir/MyMac/AppName.launchscreen/Assets: error: The operation couldn’t be completed. Failed to locate any simulator runtime matching options: { I tried deleting all the files in the Scratch directory on my Mac already.
  13. Yes I reinstalled the last official release Xcode 15.0.1 - Oct 18 2023 and all works as expected. Well that only cost me half a day. Thanks.
  14. I have xcode 15.1 installed. I think it is a Delphi Error though, using the incorrect call to the PAClient. I am not trying to run the simulator. I am trying to delpoy to the mac.
  15. M1 I can open the simulator from Xcode. Problem is I do not want to use the simulator. I want to build a Release for submission to Testflight, but everytime I try to deploy the App, for some reason it tries to run the simulator. I just want to reset so that the Release deployment works as it used to, Platforms = (com.apple.platform.iphonesimulator)
  16. Well I can't seem to get the aab that I submit to Google Play to provide a version for my Android device that is a 64bit device, using a 32-bit mode when submitting a build for testing. I would have thought the Google Play internal Testing area would also use the aab file to create versions of the app that can be installed onto these devices for testing. I understand that to iinstall an APK onto the phone it would need to be built using either the 32-bit target or the 64-bit target. That works. If I build a 32-bit version then I can install the APK onto the 64-bit device using 32-bit mode. That installs perfectly. Just the aab file that I subit to Google Play and then expect to be able to install on the device from the Google Play internal Testing link does not. We also have release the App live and the devices cannot install it onto these devices either and we have the setting correct in the previously submitted aab files as well.
  17. @Dave NottageThat is what I thought. When in development and have a 32 bit device connected, then select 32 bit development and when I have a 64bit device connected select the 64 bit tarket. That works fine. But when I build the App and deploy, creating the .abb file which I then submit to internal testing, using the developer console, and then install the internal testing version on my 32 bit app I receive the message the * "Your Device isn't compatable with this version." * "You're an internal tester. This App maybe unsecure or unstable" Does the Android App Bundle Support only work once the App has been submitted as a live App and is available on Google Play for all to download using either a 32bit or 64bit device? I would have expected the Android App Bundle Support to also work in the Internal Testing side as well.
  18. @Dave Nottage Hi, so is the only way to make sure Android App's developed using Delphi 12, is to build 2 2 separate apps? One targeting the 32 Bit architecture and the other 64 bit Architecture? App - 32, and App - 64 Is that correct? I have the Generate Android 32-bit and 64-bit binaries set to True and when I try to install the 64 Bit onto the device I receive "Your Android device does not support the selected target platform architecture" and I have confirmed that the device is running in 32 bit as you suggested above? Thanks in advance.
×