Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Making an app in the Android Source compile into system/app instead of data/app?

I'm compiling an Android ROM from source, and I have several apps that compile, but into data/app on the phone. They're uninstallable through the phone settings. I want them to be impossible to uninstall from the phone, and to compile into system/app instead of data/app.

Any advice?

edit:typo

like image 913
Patches Avatar asked Apr 13 '12 20:04

Patches


People also ask

Which class is the entry point in an Android application?

The first "entry" point is the application class as Kingston pointed out. However, the easiest thing to get the very first starting point is to check the stack when debugging onCreate.

Where will the status of building and running the project is shown in the Android Studio IDE?

The tool windows give you access to specific tasks like project management, search, version control, and more. You can expand them and collapse them. The status bar displays the status of your project and the IDE itself, as well as any warnings or messages.


1 Answers

Add:

LOCAL_MODULE_PATH := system/app
LOCAL_UNINSTALLABLE_MODULE := true
LOCAL_CERTIFICATE := platform
like image 86
Justin Buser Avatar answered Sep 30 '22 13:09

Justin Buser