-
Content Count
1626 -
Joined
-
Last visited
-
Days Won
37
Everything posted by Dave Nottage
-
contacts sample application does not want to run on device
Dave Nottage replied to William23668's topic in FMX
Which version of Delphi are you using? Which version of Android is on the device? Have you tried running the app via the debugger to check whether there's any errors? -
You execute them from the machine that is connected to the device. adb is in the platform-tools folder of the Android SDK
-
There's no instruction there to reinstall Delphi.
-
Please see: https://github.com/DelphiWorlds/HowTo/tree/main/Solutions/AndroidLibraries
-
Do you have a Provisioning Profile for App Store?
-
delphi 11 android app error "Application does not support this device"
Dave Nottage replied to KMarb's topic in FMX
See: -
I think you mean Provisioning Profile, but given your comment here, you have resolved that now?
-
Have you installed PAServer? Please refer to: https://docwiki.embarcadero.com/RADStudio/Alexandria/en/Installing_the_Platform_Assistant_on_a_Mac ..and: https://docwiki.embarcadero.com/RADStudio/Alexandria/en/IOS_Mobile_Application_Development
-
One way would be to have a real device. What is the reason for wanting to test specifically on that? You should not need to.
-
Detect when/what makes a tcomponet descendent is made NIL?
Dave Nottage replied to alogrep's topic in VCL
You could at least post the code for whatever the method is that starts with "ProcessH", as per my earlier comment. You provided a screenshot and said that is where the problem occurs. -
Detect when/what makes a tcomponet descendent is made NIL?
Dave Nottage replied to alogrep's topic in VCL
Then the problem is not actually happening inside that procedure (though the root cause may be there). The problem is occurring in a method in the Http unit, in a class called TTCPHttpThrd in a method with a name starting with "ProcessH", but the rest of the callstack window is cut off in your screenshot -
As long as the PAServer is exposed to the "outside world" (perhaps by port forwarding), yes.. that is possible. Bear in mind however that if you're deploying to a device, the machine that has PAServer on it needs to be able to access the device, either by being connected directly to that machine, or possibly using something like this: https://www.net-usb.com/
-
I doubt that error message (platform architecture issue) is related to the API level issue. It's possible that you're compiling for 64-bit and the installed OS is 32-bit. Be aware that some devices have a 64-bit CPU, but have a 32-bit Android OS installed.
-
delphi 11 android app error "Application does not support this device"
Dave Nottage replied to KMarb's topic in FMX
It may help to delete everything in the output folder(s) in question - by default they're Android/Debug (or Release) and Android64/Debug (or Release), then rebuild -
delphi 11 android app error "Application does not support this device"
Dave Nottage replied to KMarb's topic in FMX
The error message: java.lang.ClassNotFoundException: Didn't find class "androidx.core.content.FileProvider" Usually means that the jar that contains the class androidx.core.content.FileProvider was not included in your app. This class is in core-1.5.0-rc02.dex.jar, and should appear in the Libraries node, as per the instructions in my earlier reply. This is an example of what it should look like: i.e. the package in question does not have a red "x" in the icon -
delphi 11 android app error "Application does not support this device"
Dave Nottage replied to KMarb's topic in FMX
It's odd that you would receive that error on one device and not another. Regardless, please see this: https://github.com/DelphiWorlds/HowTo/tree/main/Solutions/AndroidLibraries -
The targetSdkVersion value is whichever target API level Delphi currently supports, i.e. it is not determined by which API level you have selected. It should allow you to set this (see https://quality.embarcadero.com/browse/RSP-38976), however if you want it to be something different you'll need to change it in the AndroidManifest.template.xml file.
-
Create multiple instances of tApplication with multiple MainThreads?
Dave Nottage replied to microtronx's topic in VCL
What is it that you think this will achieve? -
I suggest start reading, here: https://docwiki.embarcadero.com/RADStudio/Alexandria/en/IOS_Mobile_Application_Development
-
What the Delphi 11 version number after november patch ?
Dave Nottage replied to William23668's topic in Delphi IDE and APIs
Which parts are incomplete? The version number in the about box changes only when there's a new major version or update (i.e. not a patch) -
No, it doesn't. I wish it did 🙂
-
Yes. I wrote it, so I would know. Also see line 58 of the code
-
Can you describe why it needs to be rich edit?
-
That's for Windows only.
-
It may be related to the model and iOS version. Please see: https://quality.embarcadero.com/browse/RSP-36095