2

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

Community
  • 1
  • 1
blueaac
  • 147
  • 1
  • 11
  • People seem to get real upset about android-source questions because they don't understand them, have an upvote to even it out – Adam W Oct 07 '15 at 20:38

1 Answers1

1

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.

Adam W
  • 972
  • 9
  • 18