blueaac
blueaac

Reputation: 147

Install apps in data/app instead of default system/app when building android from source

When i build my android source code, my apps install as system apps in system/app. I do not want that. I want my apps to install as normal apps in data/app which also makes it easy for the user to uninstall the app

This answer did not help me, Install an app into data/app instead of system/app in the Android Source compilation

Upvotes: 2

Views: 604

Answers (1)

Adam W
Adam W

Reputation: 1012

The Andoid Source build makes the system.img. This does not include the data partition so you cannot add apps to the data partition. Apps that are built by the source go into either /system/app or /system/priv-app.

Upvotes: 1

Related Questions