Jump to content

Dave Nottage

Members
  • Content Count

    1652
  • Joined

  • Last visited

  • Days Won

    37

Everything posted by Dave Nottage

  1. Dave Nottage

    Delphi Android/IOS Apps

    Written in Delphi: https://apps.apple.com/us/app/earmaster-music-theory/id1105030163 https://apps.apple.com/us/app/kiskis/id1420049759 https://apps.apple.com/us/app/my-shift-planner-calendar/id645662133 https://apps.apple.com/us/app/pledgestar/id1548603090 https://blogs.embarcadero.com/fun-ranch-mobile-game-is-developed-with-delphi/ http://flash-o-matic.com That's just the ones I can recall right now
  2. Dave Nottage

    Windows 11 Speech Recognition

    There's also this: http://www.blong.com/conferences/dcon2002/speech/SAPI51/SAPI51.htm
  3. Whatever the case, the BASS libraries are not ending up in the app. I "pulled" the APK after installing the app, and there's no lib folder:
  4. For me, it asked for permissions (which I granted), then restarts over and over, presenting a toast related to permissions being granted. Without knowing exactly the code is doing during startup, it's going to be difficult to diagnose. I suggest moving as much code as you can out of FormCreate (if you use that event) or the main forms constructor (if you have overridden it), and call it later.
  5. If you're using macOS 12.3 or later, you'll need Delphi 11.1 with Patch 1 installed
  6. Dave Nottage

    iOS deployment problem

    Can you indicate what versions you have of Xcode, and macOS?
  7. Dave Nottage

    Version check error???

    As well as any 3rd party component packages?
  8. Dave Nottage

    iOS deployment problem

    Something has changed the active developer directory. If your Xcode is in the default install location, use this command: sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer To correct it
  9. Might this help? https://github.com/RRUZ/tsmbios
  10. Dave Nottage

    AdMob in Delphi11

    Did you read the details of the readme, here? https://github.com/DelphiWorlds/Playground/tree/main/Demos/AdMob#readme
  11. Dave Nottage

    Working with Delphi and Excel

    Without using OLE? Yes. An .xlsx file is in .zip format. You can extract the contents using TZipFile and read the (mostly) xml files inside. You could learn the spec and parse the xml. Here's some links that might help: https://docs.fileformat.com/spreadsheet/xlsx/ http://officeopenxml.com/anatomyofOOXML-xlsx.php https://www.brendanlong.com/the-minimum-viable-xlsx-reader.html https://c-rex.net/projects/samples/ooxml/e1/Whitepaper/spreadsheetml.html
  12. Dave Nottage

    Delphi 10.4.2 CE support Android API 30

    It's in the bin folder of your Delphi installation, e.g. C:\Program Files (x86)\Embarcadero\Studio\21.0\bin
  13. Dave Nottage

    IOS IPA File generation error

    From what I could see from the initial post, they have all that. This is usually due to the version of Xcode being incompatible with the version of PAServer. If the aim is to create an IPA to put on the App Store, it's not going to work since the App Store now requires Xcode 13, and 10.4.2 has a PAServer that is incompatible with Xcode 13. To produce .IPA files, I strongly recommend using Delphi 11.1. There is otherwise this workaround:
  14. Dave Nottage

    AdMob in Delphi11

    That's way too vague. Did you try the demo? Bear in mind (and if you read the readme) that it depends on the Kastri library.
  15. Your first post didn't seem to imply that there were any issues (other than it being confusing, which it is), in fact it stated: There isn't any way of "working around" the confusion - Embarcadero would need to change the way the IDE works, and/or make it clearer to the developer why it works this way
  16. Related reports: https://quality.embarcadero.com/browse/RSP-27501 https://quality.embarcadero.com/browse/RSP-26659
  17. Dave Nottage

    Notification demo android 12

    You don't see this part? 😉
  18. Dave Nottage

    Notification demo android 12

    If you're referring to this demo: https://github.com/Embarcadero/RADStudio11Demos/tree/main/Object Pascal/Multi-Device Samples/Device Sensors and Services/AndroidNotificationServiceDemo There seems to be some missing information in the project file because it does not even add the service to the manifest, and the service jar is not listed under the Libraries node of the Android platform in Project Manager. What I did to rectify this was to: Right-click the Android platform node in Project Manager Click Remove Android Services Select the checkbox next to the service in the list Click Next Click Finish Right-click the Android platform node in Project Manager again Click Add Android Service Click Next Select the path to the service, i.e. AndroidNotificationServiceDemo\NotificationService Click Select Folder Click Next Click Finish Then recompile/deploy/run After you click Start Service, a notification should appear soon after in the system status bar. Opening the notification and tapping on it should open the app and the notification info should appear in the memo
  19. Dave Nottage

    Admob

    This may be of interest to you: https://github.com/DelphiWorlds/Playground/tree/main/Demos/AdMob Once I have the events for the full screen ads sorted out on iOS, I plan on moving it over to Kastri
  20. Dave Nottage

    disabling fmx webbrowser dark mode

    It's possible there is. My question was: What are the steps to reproduce that the website will definitely show in dark mode? Then I can test that the code will force it into light mode
  21. Dave Nottage

    Play Store - Your Device Isn't Compatible with This Version

    Looks pretty normal. Your customer might want to visit this link: https://helpdeskgeek.com/help-desk/fix-your-device-isnt-compatible-with-this-version-on-android/
  22. Dave Nottage

    disabling fmx webbrowser dark mode

    I may have a solution, however I'm having trouble verifying that it works. What are the steps to reproduce that the website will definitely show in dark mode? At present, all I'm doing is navigating to https://www.google.com, and TWebBrowser shows the site in light mode, despite the Chrome app showing it in dark mode (which is what my device is set to)
  23. Dave Nottage

    Play Store - Your Device Isn't Compatible with This Version

    Please show what is in AndroidManifest.xml (i.e. not AndroidManifest.template.xml)
  24. Dave Nottage

    New bug with patch 1 for 11.1

    I'm not seeing that after applying Patch 1. What I mean by that is after saving, the buttons are not enabled, and the modified mark is removed. When opening a project, there's still the bug of the IDE thinking that the project has changed, even though no changes have been made.
  25. Dave Nottage

    Hardware ID

    I don't see how that would have ever compiled in that form. Since it's a standalone function, there's no "Self" for it to refer to. Perhaps InternalGetHardwareID was once a method of an object?
×