-
Content Count
37 -
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
33 ExcellentRecent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
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 Ondrej Kelle's 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.
-
I've heard if you have a libunity.so in your APK or your project name is unity (so it generates libunity.so) then Google accepts it as a 32bit Unity app. YMMV.
-
Updated version. Takes two params. First is the path of the app to run and the second is the port to run it on. Apparently balance only supports 16 (or 32) groups unless you compile it yourself. Example: ./gtkcloud.sh /root/FireMonkeyPaintDemo 81 #!/bin/bash for i in {1..16} do nohup broadwayd :$i & export GDK_BACKEND=broadway export BROADWAY_DISPLAY=:$i $1 & #echo "" done servers="" for ii in {1..18} do let port=8080+$ii servers="$servers localhost:$port:1 %" done echo $servers balance $2 $servers
-
PHP4Delphi lets you build extensions for PHP. Pretty old though. https://sourceforge.net/projects/psvlib/files/PHP4Delphi/