Jump to content

cupboy

Members
  • Content Count

    8
  • Joined

  • Last visited

Community Reputation

0 Neutral
  1. For doing ios or mac apps in firemonkey does the processor in the macbook matter? Will it work with M3? I'm using version 11.2 and no longer a subscriber.
  2. Get this message when opening the IDE. I haven't even selected a project yet. Can't clear the message. It will just re-appear. Delphi 11.2. Searched the registry and there is nothing called Default.Personality. There is something called Delphi.Personality. Searched the web too. This seems to only be happening to me. After killing Delphi using Task Manger and re-starting the message has gone away. Maybe it was just a one-time thing?
  3. Here is my code: function TfrmMain.SetScreenBrightness(Brightness: Byte):System.string; var iResult : Byte; MobilePermissions1 : TMobilePermissions; begin iResult := 0; {$IFDEF ANDROID} MobilePermissions1 := TMobilePermissions.Create(self); MobilePermissions1.Signature.WriteSettings := True; MobilePermissions1.Apply; if HasPermission('android.permission.WRITE_SETTINGS') then begin TJSettings_System.JavaClass.putInt( TAndroidHelper.Context.getContentResolver, TJSettings_System.JavaClass.SCREEN_BRIGHTNESS, Brightness); iResult := 1; end else ShowMessage('Write Permissions failure!'); {$ENDIF} end; All I get when I run it on the Android 12 phone is the Write Permissions failure message. Any idea about what the cause would be? On the phone I have set Modify system settings to Allowed ... still fails. Well nevermind it is fixed now. Here is the fix: // if HasPermission('android.permission.WRITE_SETTINGS') then if TJSettings_System.JavaClass.canWrite(TAndroidHelper.Context) then GitHub - adrianosantostreina/MobilePermissions: This is a component to turn more easy the request permission in Android 8.x or later. THIS TOPIC CAN BE DELETED (I don't seem to be able to do it myself... thanks)
  4. cupboy

    Current subscription required to download ?

    RAD Studio, Delphi, C++Builder 10.3.1 ISO from https://my.embarcadero.com/#downloadDetail/549 What's really dumb is I used to have this but deleted it thinking I could just download it again if I ever needed it again. Bad idea.
  5. I cannot download anything anymore. Even stuff I already own. It just says Update Subscription Expired Request Renewal Quote. This seems illegal to me since I already bought the products. I don't think it used to work this way.
  6. cupboy

    downloads website

    The downloads.embarcadero.com site no longer works. Is there a new site now?
  7. cupboy

    TLocationSensor on Android 12

    Where is the workaround currently located? Or can someone just post the steps here. All of the steps. Not just some of them. Thanks!
  8. Anyone have a link for the newly released version? All I can find is a link to a trial version. Here is a link with some info about the release, but no download link: http://docwiki.embarcadero.com/RADStudio/Sydney/en/10.4_Sydney_-_Release_2 Perhaps it isn't released yet. Who knows?
×