-
Content Count
1424 -
Joined
-
Last visited
-
Days Won
32
Everything posted by Dave Nottage
-
I expect this is not going to be possible, however I thought I'd ask just in case someone has a brainwave of some kind. I'm working on a DLL which implements a virtual channel for Windows terminal services, and a desired function is for it to be able to "self-update". It fetches a file which is the new version of the DLL, and is supposed to "move" the file in-place. Needless to say I've tried to make it work, with the inevitable "access denied" errors when either attempting to rename the original file then replace it, or just copy over it.
-
Please refer to: https://quality.embarcadero.com/browse/RSP-30989 It has been happening to me, however I had not reported it as yet. I had also planned to attempt to debug the issue - perhaps Thomas can?
-
Without having the source of the project (or a reproducible example), it might be difficult to discover what the problem is
-
Might be wrong/incompatible NDK settings. This is what I have for 10.3.3:
-
Rx10.4.1 strangely removes UserTools.proj suddenly from %APPDATA% folder
Dave Nottage replied to Rollo62's topic in Delphi IDE and APIs
Doesn't happen to me. -
Note to self: double triple check where the DLL is being loaded from 😞
-
Yes
-
I'm getting the blank Grep window, too.
-
You could send it if you like, however I think it may be resolved only by seeing the code being executed at startup. You can direct message me the source if you like. I will treat it in confidence.
-
Seems to be stuck in an eternal loop. Does it work as an .apk? What exactly are you doing with Firebase in the app?
-
createdirectory 10.4 firemonkey 10.4 failed to create folder on android
Dave Nottage replied to PavelX's topic in FMX
It will not work if you do not have the permissions checked in the project options. -
Can you give a link to the app on Play Store?
-
createdirectory 10.4 firemonkey 10.4 failed to create folder on android
Dave Nottage replied to PavelX's topic in FMX
The following worked fine for me: procedure TForm1.Button1Click(Sender: TObject); begin PermissionsService.RequestPermissions(['android.permission.READ_EXTERNAL_STORAGE', 'android.permission.WRITE_EXTERNAL_STORAGE'], procedure(const APermissions: TArray<string>; const AGrantResults: TArray<TPermissionStatus>) begin // NOTE: I am assuming the user granted permission, here! CreateFolder; end ); end; procedure TForm1.CreateFolder; var fn: string; begin fn := TPath.Combine(TPath.GetSharedDocumentsPath, 'OLA'); ForceDirectories(fn); if TDirectory.Exists(fn) then Button1.Text := 'OK' else Button1.Text := 'Failed'; end; Delphi 10.4.1, Android 11 device (Pixel3a) -
From Android 6 you cannot change private secure settings, and "show_touches" is one of them.
-
10.4.1 Released today
Dave Nottage replied to Darian Miller's topic in Tips / Blogs / Tutorials / Videos
If you mean in relation to a bunch of API imports, that would have happened in 10.4.0 -
10.4.1 Released today
Dave Nottage replied to Darian Miller's topic in Tips / Blogs / Tutorials / Videos
2 days ago according to App Store app on my Mac. Haven't installed it yet - perhaps that's the issue for Sherlock? -
10.4.1 Released today
Dave Nottage replied to Darian Miller's topic in Tips / Blogs / Tutorials / Videos
Worked OK here. What actually happens when you try? -
Problem with Delphi RIO 10.3.3 and Google API Level 29
Dave Nottage replied to Massimiliano S's topic in Cross-platform
You may need to add: android:requestLegacyExternalStorage="true" To the <application> tag in AndroidManifest.template.xml- 20 replies
-
- api
- play store
-
(and 1 more)
Tagged with:
-
Problem with Delphi RIO 10.3.3 and Google API Level 29
Dave Nottage replied to Massimiliano S's topic in Cross-platform
What's the exact message?- 20 replies
-
- api
- play store
-
(and 1 more)
Tagged with:
-
Did you resolve the apparent permissions issue?
-
For 10.3.3 or earlier, please refer to: For 10.4, simply add the fonts to the deployment, with a remote path of assets\internal
-
Problem with Delphi RIO 10.3.3 and Google API Level 29
Dave Nottage replied to Massimiliano S's topic in Cross-platform
For anyone following this thread, the relevant QP report is here: https://quality.embarcadero.com/browse/RSP-27218 As per my comment on the report (dated Aug 24), it would be possible to recompile System.pas (it needs a change to ICU.inc), however unfortunately, the files ex.android.arm.inc and ex.android.arm64.inc are not supplied, thus making it impossible without help from Embarcadero.- 20 replies
-
- api
- play store
-
(and 1 more)
Tagged with:
-
That's the plan. I have some other controls coming that will be included.
-
Did you follow the instructions in the ReadMe.txt file?
-
Yes, I have an implementation for it, and a while ago was seeking people to try it out. I haven't done anything to it for a while, however I have attached the work-in-progress to this reply. The plan is to include the final result into Kastri: https://github.com/DelphiWorlds/Kastri AppleSignin.zip