Hello;
I have Beagleboard XM and using Anroid OS.Android OS provide me my needs and I dont want to write an app for it.But I want to customize OS itself.
-Changing icons,UI etc.
-Customizing built in applications(camera,gallery)
-Disabling some phone-related options(because it wont run on phone)
Can anybode show me the route that I should go?
Hi Bathuhan,
1. To change icon for individual application; you need to go through application(camera,gallery)->res folder and change icon images.
2. To disable phone related option: refer to "build/target/product/sdk.mk". Comment components which you do not want and build the system again
-
satish
Kindly click the verify answer button on this post if it answer your question.
First thanks for your answer.
I am using prebuilt image of TI.I want to ask that where can I find source of that apps?
Than where can I find build/target/product/sdk.mk.
Hi Bathuan,
There are multiple ways again.
1. if you are using prebuilt images and just would like to play around, they you can manually delete application from "system/app" folder and reboot the system. But I would not recommend this approach.
2. TI source you can find on @ http://www.ti.com/sitara-android or http://arowboat.org. Kindly follow the user guide for the release you are using
You can find that directory (build/target/product/sdk.mk) in source code as well
3. One more approach is go to source directory: packages->apps-><gallery,camera or phone - whatever you want>->AndroidManisfest.xml
e.g. To disable camera, open
packages/apps/Camera/AndroidManifest.xml
and comment following lines
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
Hi Sathish,
Can you point me on how to remove the existing dock applications from the Android Launcher. I would like to remove the phone and browser buttons and keep only the app drawer button. I went through the source code but couldn't notice three buttons being created. I was able to achieve the same with different home replacement app but it would be nice if I could do it with default launcher app. It would be also great if I could replace the phone and browser apps with custom made apps.
Thanks,
Krishnan.
Hi Krishnamoorthy,
1. if you would like to remove mentioned apps likes phone, mms etc. from the build itsself, then follow below link. It will help you out
http://processors.wiki.ti.com/index.php/Android_Memory_Analysis#Run_Time-Volatile_Memory_Customization
2. Second but ugly way is to remove package from /system/app. I do not recommend this one
3. Third is as mentioned in above thread, remove intent filter "LAUNCHER".
I hope this will help you.
BR,
Thanks Satish for the info. I was able to remove the in-built apps and add my custom apps to the dock by editing the Launcher app. I followed the RowboPerf source code.
Regards,
Hi satish ,
Please let us know how to remove the lock screen from the Android . We would like to show directly show the screen after lock screen is removed .
We are very new to android . We would like to get some help in this regard .
regards
Sairam.S
Hi Sairam,
We have documented the same at
http://processors.wiki.ti.com/index.php/Android_Developer_FAQs#Q:_How_to_auto_disable_key_guard.2Fscreen_lock_after_android_boot.3F_How_to_see_home_screen_instead_of_screen_lock_after_android_boot_.3F
I hope this will resolve your problem