Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm writing a (legal) spy program. I want to make this program hidden on the launcher (so that no icon is shown). I tried to remove <category android:name="android.intent.category.LAUNCHER" /> line from AndroidManifest.xml, but then the user can't launch the application in first start mode (configuration). Who have any ideas ?

How can I do it?

share|improve this question
2  
What have you tried? – CommonsWare Jan 7 at 21:57
I wrote this in question – Ty221 Feb 6 at 11:53

closed as not a real question by Perception, A--C, Squonk, Ahmad, Niek Jan 7 at 23:00

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

up vote 1 down vote accepted

You need to make your app into a service. Here is Androids take on creating services components:

http://developer.android.com/guide/components/services.html

Found this as well on MobiWare:

When you want to track the usage of the mobile or gather some data without user knowledge,this might help you.

Step1: Create an application with No icon. Normally,an activity is declared as follows in manifest.

     <activity
        android:label="@string/app_name"
        android:name="org.security.tracker.Tracker-activity" >
        <intent-filter >
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>

Remove the Category TAG ,you wont get app icon anymore. Now,you don't need activity anymore. so remove this segment. BUt you might think,how the app will run without any trigger or what is the starting point of the application. This is the solution.

<!-- Start the Service if applicable on boot -->
    <receiver android:name="org.security.tracker.ServiceStarter" >
        <intent-filter >
            <action android:name="android.intent.action.BOOT_COMPLETED" />
        </intent-filter>
    </receiver>

This triggers your code that written in Receiver there by you can run service to implement your thoughts.

 <service android:name="org.security.tracker.serviceCode" />

You need to add this permission,

 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />

Your code runs when the phone reboots only.

Step 2. Write your code

On Reboot,the recevier will fire ,there you can start your service.

class ServiceStarter extends BroadcastReceiver {

@Override
public void onReceive(Context _context, Intent _intent) {

    Intent i = new Intent("com.prac.test.MyPersistingService");
    i.setClass(_context, ServiceCode.class);
    _context.startService(i);
  }

 }
share|improve this answer

remove

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

from the manifest file

share|improve this answer
@AmitApollo, No Need to create a service. – Jwalin Pandya Jan 7 at 22:16
How will the app ever be started? – Squonk Jan 7 at 22:30

Not the answer you're looking for? Browse other questions tagged or ask your own question.