Jump to content

Dave Nottage

Members
  • Content Count

    1424
  • Joined

  • Last visited

  • Days Won

    32

Everything posted by Dave Nottage

  1. Dave Nottage

    does CnWizards phone home?

    Going by the source, it appears it is called when the IDE first goes "idle", and it fires off a thread to do the check, so I doubt the delay is from the "phone home" check. FWIW, I see no noticeable delay with version 1.1.6.959
  2. Dave Nottage

    Microsoft Translator Text API v3.0

    The URL you are sending to does not appear to have any of the required values. It should (according to the link you gave) look at least something like this: https://api.cognitive.microsofttranslator.com/translate?api-version=3.0&to=de
  3. Dave Nottage

    OTA Ide Shutdown

    Application.MainForm, oddly enough Not really enough to go on - why do they need to be suppressed? i.e. why would they even show at the point when the IDE is shutting down?
  4. Dave Nottage

    OTA Ide Shutdown

    For what purpose? That may define exactly what the add-in should "look for". One way might be to use a timer to monitor the Visible property of the main form. As far as I know, the only time it becomes invisible is when the IDE is shutting down
  5. This issue would be a part of the problem: https://quality.embarcadero.com/browse/RSP-21834
  6. ProcessMessages will not work as you may expect in FMX, and definitely not on Android. I suggest avoiding ProcessMessages entirely; then it won't matter which framework or platform you're using. It may be better to describe why you think it's necessary to use it (preferably with example code), because it's likely there are other ways to solve it.
  7. Dave Nottage

    Version Control System

    +1000 for SourceTree on macOS. Not as enthused about the Windows version
  8. Dave Nottage

    Cross-platform discovery of device name and user name?

    The DW.OSDevice.xxx units here have implementations for GetDeviceName for iOS, Android, macOS, Windows and Linux: https://github.com/DelphiWorlds/KastriFree/tree/master/Core I could add something like GetUserName - which would likely return blank for iOS and Android
  9. Dave Nottage

    IDE Design Plug in..

    It's probably Jeremy North's XE Plus Pack: http://jed-software.com/xepp.htm I'll point him in this direction
  10. Dave Nottage

    Delphi Rio IDE hangs opening 10.2.3 projects

    Hasn't happened to me. Any that you can share?
  11. Dave Nottage

    CrossPlatform uPnP solutions for Delphi

    Does this link (followed from the SO link) not give enough info? http://francois-piette.blogspot.com/2013/02/using-universal-plug-and-play-upnp-with.html
  12. Dave Nottage

    Google Map Component

    Thanks for the heads up! For anyone else interested, here's a link: https://developer.tomtom.com/maps-sdk-ios
  13. Dave Nottage

    Google Map Component

    I'm curious as to how they've made it work, unless it uses an older Google Maps SDK. Delphi 10.3 Rio will not link against the frameworks in the latest Google Maps SDK version, even targeting iOS 11.2 SDK
  14. Dave Nottage

    OSX Debugging Issue - How?

    I've just noticed this from your first post. I can only suggest checking what the differences are between the two. Perhaps make a copy of the converted application, and start removing parts of it until the problem is resolved.
  15. Dave Nottage

    OSX Debugging Issue - How?

    Is there a callstack?
  16. Dave Nottage

    Embarcadero DocWiki for Rio

    So that it's consistent with the overuse of padding in the IDE?
  17. Dave Nottage

    How to develop cheaply for iOS?

    ..or a refurbished model (including iMac or Macbook); preferably no earlier than 2013 to ensure that it'll run Mojave.
  18. Dave Nottage

    Virtual Box with MacOsx PAServer

    What is the exact error message? Can you ping the address from a command line window in your VM? I'm using VirtualBox VM's myself and have not had an issue with either NAT or Bridged, as long as the VM can "see the address" being connected to.
  19. I have tested 10.3 on an Android 5.1.1 device and it updates the UI just fine
  20. I am trying to fathom why the web install and ISO install apparently has different versions of .DCUs (or perhaps source). Check the last comment, here: https://quality.embarcadero.com/browse/RSP-18836 They must be being packaged from different sources; the question is why on Earth are they?
  21. Dave Nottage

    No more Transparent Forms on Android, now they are black

    No suggestions as yet, however it has been reported: https://quality.embarcadero.com/browse/RSP-22314
  22. Can you show how/where JInterstitialAd is being used?
  23. Whatever the reason, I've reported the problem: https://quality.embarcadero.com/browse/RSP-22877
  24. I can't see how it could have ever worked. The code for registerIntentAction in FMXNativeActivity.java: public void registerIntentAction(String action) { mRegisteredIntentActions.add(action); } ..and where it is initialized: private List<String> mRegisteredIntentActions = Arrays.asList(NotificationInfo.ACTION_NOTIFICATION, NotificationPublisher.ACTION_GCM_NOTIFICATION); Arrays.asList returns a fixed size list: https://developer.android.com/reference/java/util/Arrays.html#asList(T...) i.e. it cannot be added to. Attempting to add anything will raise the error that you're seeing.
×