user1150440
user1150440

Reputation: 449

how to disable native android apps

I want to disable or uninstall or remove all the native android apps from my Tablet.I want only my application to run on the tablet,so that the end user is able to connect to the internet or browse.My application connects to the internet automatically after an interval of time and does the needful.

In short i want to customize the the Android 2.3.3 in my tablet so that there is no other application in the tablet except my custom application.

As soon as the end user switches on the tablet, i want my application to start.All you can do is play with my application or do nothing ;)

Upvotes: 2

Views: 2661

Answers (2)

Dirk Jäckel
Dirk Jäckel

Reputation: 3025

You could register your app as a custom launcher. This App would appear after booting the devices and whenever the user hits the home button.

You can do this with a special intent filter:

<intent-filter>
 <action android:name="android.intent.action.MAIN" />
 <category android:name="android.intent.category.HOME" />
 <category android:name="android.intent.category.DEFAULT" />
</intent-filter>

Upvotes: 1

Muaz Othman
Muaz Othman

Reputation: 437

You'll probably need to create a custom build of Android using your device after you root it and uninstall all apps but yours then this may help: http://forum.xda-developers.com/showthread.php?t=633246

if you are well-experienced then it is better to work on the source code of the Android OS directly, you can find it here: http://source.android.com/source/index.html

Upvotes: 1

Related Questions