How do I install an app into the data/app folder instead of the system/app folder in an AOSP build?

前端 未结 3 1363
余生分开走
余生分开走 2020-12-17 23:30

I put my application folder in

packages/apps  // inside AOSP source code

Now my application has following Android.mk in the s

3条回答
  •  暖寄归人
    2020-12-17 23:58

    You can take help of some other system app. Copy your target app which need to be installed in /data in say /system/usr/share

       device/ /extras/usr/share/:system/usr/share/ \
    

    write above rule in device/platform/ Now using some other system level app you can check whether your app is installed or not. If not installed install it via package manager by giving above path system/usr/share/

提交回复
热议问题