Jump to content
Sign in to follow this  
stacker_liew

These Projects Does Not Install Into Android 12 Via Delphi 11.2

Recommended Posts

8 minutes ago, stacker_liew said:

FMXCalc.7z

Your AndroidManifest.template.xml file is out of date. Delete the file, then rebuild the app, which will recreate the file. If that does not fix the problem, see here:

 

Share this post


Link to post
Just now, stacker_liew said:

May be my Redmi Note 9S, Android 12 problem.

The actual error message may help, however I recall seeing problems elsewhere with Redmi and Android 12

Share this post


Link to post
10 minutes ago, Dave Nottage said:

I recall seeing problems elsewhere with Redmi and Android 12

I assume you've followed the steps as outlined in this video?

 

Share this post


Link to post
10 minutes ago, Dave Nottage said:

I assume you've followed the steps as outlined in this video?

 

Even I turn off the miui optimization also won't work.

Share this post


Link to post
2 minutes ago, stacker_liew said:

Even I turn off the miui optimization also won't work.

What's the actual error message(s)?

Share this post


Link to post

Are you able to connect via ADB and you cannot list or delete the desired package name via ADB ?

Maybe reboot of the phone could help, as sometimes phones can stuck somewhere while they look and feel normally operating.

Share this post


Link to post

It should be able to uninstall with something like this

Prints all packages                                 adb shell pm list packages				
also show the package UID                           adb shell pm list packages -U
also include uninstalled packages                   shell pm list packages -u

...

remove this app package from the device             adb uninstall test.apk
Keep data and cache directories after removal       adb uninstall -k test.apk

 

  • Like 1

Share this post


Link to post
3 minutes ago, Rollo62 said:

It should be able to uninstall with something like this

It's possible that the app is installed for another user, in which case the form of adb uninstall will need to be:

adb uninstall 'some.package.name'

Where 'some.package.name' is the package identifier, e.g. com.embarcadero.FMXClock. This form of the command will uninstall for all users

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×