I am creating a custom launcher in my embedded android development board.How to set custom launcher as default launcher into ANDROID AOSP source code.
Please help me.
Thanks.**
I am creating a custom launcher in my embedded android development board.How to set custom launcher as default launcher into ANDROID AOSP source code.
Please help me.
Thanks.**
I think a simple solution could be to remove any other launchers from the system, I've listed a couple of ways you could achieve this below.
adb root
adb remount
adb shell "rm -r /system/app/Launcher3"
In Android.mk
of your application, you need to override all default Launcher applications of AOSP. Like that:
LOCAL_OVERRIDES_PACKAGES += Home Launcher2 Launcher3 Launcher3QuickStep CarLauncher