Hallo @Terry,
I would like to reduce the first booting time, for it I would like to remove all default app and only put my app on it. Which source that I can modify for it. Thanks.
Hallo @Terry,
I would like to reduce the first booting time, for it I would like to remove all default app and only put my app on it. Which source that I can modify for it. Thanks.
There are too many apps.
You need to remove these apps by yourself.
This is a demo for removing the Launcher3 application
diff --git a/kvim/product/product.mk b/kvim/product/product.mk
index a4a7021..49b3d89 100644
--- a/kvim/product/product.mk
+++ b/kvim/product/product.mk
@@ -51,8 +51,8 @@ PRODUCT_PACKAGES += \
Settings
#MboxLauncher
-PRODUCT_PACKAGES += \
- Launcher3
+#PRODUCT_PACKAGES += \
+# Launcher3
#USB PM
PRODUCT_PACKAGES += \
Hallo @Terry,
Form the folder “/kvim/product/product.mk”, I could not find the whole list of the Apps. In which folder that I can find it? Should I change the CMake file in order to build the image?. Thanks for your help.
BR,
Doel
That’s too more, you need to search it on SDK source code, The easy way to do it is deleting the Android.mk file in application path.
Thanks a lot, I will try it later. I still have another question >> How to add the android app (apk file) which I had already created to the pre-built or pre_installed app?
You only need to copy your apk into the path device/khadas/kvim1/preinstall
Hallo Terry,
Both removing the app and adding the apk for the pre-installed work properly. Thanks a loooooottt
Next question How to run myApp automatically in a sense of the first booting?
Best Regards,
Doel
You need to modify your application, and you can search BOOT_COMPLETED by google
Hallo Terry,
This one is done in my app. After first running, the app is automatically start after the boot completed. The thing is I have to at least tap/run the app after the first booting. Maybe there is a way that the app is atuomatically run after first booting so I do not need to tap the app. I had already tried to change the product.mk by replacing the Launcher3 with my app but it did not work. It is important for us, regarding the production aspect. It will save a lot of time.
BR,
Doel
Is your application as a Launcher application? You need to change your application property on AndroidManifest.xml file.
<category android:name="android.intent.category.HOME" />
I think you can search it by google.