William23668
Members-
Content Count
135 -
Joined
-
Last visited
Community Reputation
8 NeutralRecent Profile Visitors
6077 profile views
-
Thanks @ToddFrankson The key to solving my problem is to run the project without debugging like it say in the documentation. I was only use compiling
-
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 ?
-
Problem solved I found that I can not use apk google now accept .aab only . And I created keystore from Delphi itself and it signed the file automatically. Thanks
-
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
-
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
-
I found the app .aab in the bin folder of my project !!
-
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 ?
-
Ok. Will check all files.
-
Yes _CONTEXT define like this inside IFDEF _CONTEXT = record . But I can not modify this source file to make _CONTEXT inside IFDEF
-
Tried that same problem.
-
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 ?
-
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 ?
-
What component I can use to display images in Android ?
William23668 replied to William23668's topic in FMX
@Remy Lebeau Thanks that can work. I have folder of images but can you advise how I can display 3 pictures in one scrollable TImage box ? like this: -
Hi I need a component that display images one by one in Firemonkey Android Thanks
-
How I can know the procedure that was executed before another procedure ?
William23668 replied to William23668's topic in Delphi IDE and APIs
Shit I did thanks call stack working now.