-
Content Count
40 -
Joined
-
Last visited
-
Days Won
4
Eli M. last won the day on December 9 2019
Eli M. had the most liked content!
Community Reputation
38 ExcellentRecent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
In App Purchase (consumable and subscription)
Eli M. replied to Joe Sansalone's topic in Cross-platform
Dave, is this really the case? The current documentation still says subscriptions are not supported. This guy shows how to add them. Which I am going to try. https://delphitoptips.blogspot.com/2018/03/supporting-in-app-purchase.html?m=1 -
RAD Studio is made up of Delphi and C++Builder. On the Delphi side the Object Pascal compiler is a single pass compiler and the compiler itself is not a parallel compiler but when compiling multiple projects in parallel it was able to compile 1 billion lines of Object Pascal code in 5 minutes on the AMD Ryzen 9 5950x 16 core machine. I wanted to see if something similar was possible with C++. This post is part of our modern hardware series where we explore the massive productivity gains that can be achieved on some of the fastest CPUs available at the time of this writing in early 2021. Just how much is 1 billion lines of code? Take a look. https://blogs.embarcadero.com/threadripper-3990x-the-quest-to-compile-1-billion-lines-of-c-on-64-cores/
-
Orwell Dev-C++ gets 80k-100k downloads a week. Just sayin'. C++Builder is a productivity upgrade over Dev-C++ since Dev-C++ has no visual designer.
-
20.04 is not officially supported in 10.4 according to the release notes. http://docwiki.embarcadero.com/RADStudio/Sydney/en/Installation_Notes
-
Unified Memory Management - Coming with 10.4 Beta
Eli M. replied to a topic in Tips / Blogs / Tutorials / Videos
We have a maybe ~40k-50k LoC iOS app in FMX for 5+ years and it only ever has had maybe 1 place it specifically needed DisposeOf and/or [weak]. Everything else just uses Free as it supports Windows as well. -
50 Cross Platform Samples For Android, IOS, OSX, Windows, Linux, And HTML5 In Delphi
Eli M. replied to Eli M.'s topic in Tips / Blogs / Tutorials / Videos
Project contains 100 cross platform samples now. https://github.com/FMXExpress/Cross-Platform-Samples The original 50 samples are also now available in C++. https://github.com/FMXExpress/CPP-Cross-Platform-Samples -
Add the JAR file by going to Projects|Target Platforms|Android|Libraries.. Right click and select Add...
-
Do you have Enterprise or Architect? It isn't in Pro or Community. For FMXLinux you have to install that off of GetIt.
-
50 Cross Platform Samples For Android, IOS, OSX, Windows, Linux, And HTML5 In Delphi
Eli M. replied to Eli M.'s topic in Tips / Blogs / Tutorials / Videos
It's intentional. The file has it's own copyright and is not covered under the BSD license. https://www.woll2woll.com/single-post/2017/04/24/Send-an-Email-with-an-Attachment-FireMonkey -
Learn How To Deploy Delphi 10.3 Rio Android Apps To Google Play With Android 64-bit Requirements
Eli M. replied to Remy Lebeau's topic in Cross-platform
Not written up no. .SO (SharedObjects) files are basically DLLs. You can either take the one Delphi makes and put it into some other tools APK package and call it from the code in the other tool. Or you could take the 64bit version of the .SO their tool generates and have it call your .SO file. And then put their .SO 64bit in your Delphi APK and have it call your 32bit .SO. -
Google Play Store - request extension for Delphi apps
Eli M. replied to Darian Miller's topic in Cross-platform
An MVP confirmed that they were granted an exemption for their app for ~1 year. -
Android 8.0 Permissions errors using Delphi Rio 10.3
Eli M. replied to Jose Morango's topic in Cross-platform
The PhotoEditorDemo has permissions code that works for the camera. -
Learn How To Deploy Delphi 10.3 Rio Android Apps To Google Play With Android 64-bit Requirements
Eli M. replied to Remy Lebeau's topic in Cross-platform
PM me with a budget. I can probably put together some people on UpWork with Android NDK experience to build a 64bit shim. Few different options. Use one of the tools that has an exception (Corona Labs, Adobe AIR, Unity) to load the 32bit SO file. Use something like Flutter which compiles to 64bit to load the 32bit SO file. Or compile a 64bit C++ SO file with the Android NDK to loadlibrary the 32bit SO file. -
It probably does work since there are actually 3 third party tools with exceptions. Just have to find what Google Play are looking for. I didn't try very hard. http://www.fmxexpress.com/learn-how-to-deploy-delphi-10-3-rio-android-apps-to-google-play-with-android-64-bit-requirements/ I've been banned from Google Play twice before (nothing to do with this) so YMMV.