Jump to content

William23668

Members
  • Content Count

    138
  • Joined

  • Last visited

Posts posted by William23668


  1. 1 hour ago, Rick_Delphi said:

    In the US we get a deluge of fake one's all the time.

    No only US but everywhere I see fake jobs and unrealistic HR requirements and very low salaries or just refusals without any reason. I am sad I can not utilize my Delphi experience since version 1.0 I also like Delphi over other technologies.


  2. Hi

     

    Trying to build one of the Delphi 12 samples so I add in provision keystore and selected release mode for Android 64bit and application store for build type but after compile I dont get any .aab file in the release folder. Also no binary folder as mentioned in the documentation so what I should do ?

     

    image.thumb.png.b718ddb0b73fbfdba9f61dc1d2b24e1c.png

     

    image.png.6deb4b6043609d422573c2a101c3f583.png


  3. I can not get it to work. when I upload to google play , google display error "All uploaded bundles must be signed." I just need the file signed for google

     

    I choose google to manage app signing but when I upload the file .aab I get this error All uploaded bundles must be signed

     

    image.thumb.png.65ce423a97e155af4a2b44fd393ebe41.png


  4. Hi

     

    I googled alot but could not find a solution to sign .aab file. I reviewed this page 

    https://docwiki.embarcadero.com/RADStudio/Athens/en/Submitting_Your_Android_App_to_Google_Play

     

    and tried this command:

    java.exe -jar j:\signapk\bundletool.jar build-apks --mode=universal --bundle=j:\signapk\myapp.aab --output=j:\signapk --ks=j:\signapk\myapp.keystore --ks-pass=xxx:xxx --ks-key-alias=myapp --key-pass=xxxx:xxxx

     

    and got this error:

    Exception in thread "main" java.lang.UnsupportedClassVersionError: com/android/ddmlib/Log$ILogOutput has been compiled by a more recent version of the Java Runtime (class file version 55.0), this version of the Java Runtime only recognizes class file versions up to 52.0

     

    I downloaded now recent version of java run time but I still get same error. How to sign this file ?

     

    Delphi 12


  5. Hi

     

    Just testing one of the samples project for Android and build was successful but I can not find the generated APK or AAB I just build the project on windows without using a phone. How to generate these files ?

     

    I noticed that the generated files are .o in debug folder. How I can change project to release ?


  6. 3 minutes ago, Remy Lebeau said:

    The Winapi.Windows unit is for Windows only, you can't use it on Android. Which means if the component is trying to use that unit on an Android build then its code is not IFDEF'ed properly. 

    Yes 

      _CONTEXT define like this inside

    IFDEF  
    _CONTEXT = record

    . But I can not modify this source file to make _CONTEXT inside IFDEF


  7. 4 minutes ago, Remy Lebeau said:

    Why are you re-compiling Winapi.Windows.pas?  You should not be doing that.

     

    In any case, Winapi.Windows.pas declares the _CONTEXT record only if the CPUX64 or CPUX86 conditional is defined.  Perhaps they are not defined in your situation?

     

    It is old Android app when I compile it give me the above error. I tried compile Android 32bit and 64bit. Is there something else to do ?


  8. Hi

    I was compiling a component and got this error

     

    [DCC Error] Winapi.Windows.pas(1404): E2003 Undeclared identifier: '_CONTEXT'

     

    Code:

    TContext = _CONTEXT;
    CONTEXT = _CONTEXT;
    {$EXTERNALSYM CONTEXT}

    Why I get this error ?


  9. Hi

    Sorry was not clear at first. I need to change Windows 11 desktop colors in real time like those filters:

     

    image.thumb.png.3ddb97a6cd26aa2ae0eef66947a19dc4.png

     

    I think I need to change every pixel color like a GPU driver. Can Delphi do that ? where to start ? Is there a library I can use ?

     

    Thanks

×