This will make it to show up in the main menu:
project packages/apps/SoundRecorder/
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 0215f32..c958096 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -25,6 +25,8 @@
android:configChanges="orientation|keyboardHidden">
<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>
<intent-filter>
<action android:name="android.intent.action.GET_CONTENT" />
2009/2/11 Dave Sparks <[email protected]>:
>
> You should never see Sound Recorder in the launcher unless you
> modified the manifest. If you want it to show up in the launcher, you
> need to add a launcher intent to the manifest.
>
> On Feb 11, 4:29 pm, chrisk <[email protected]> wrote:
>> Can I simply add the following to packages/apps/SoundRecorder/
>> Android.mk?
>>
>> # Use the folloing include to make our test apk.
>> include $(call all-makefiles-under,$(LOCAL_PATH))
>>
>> On Feb 11, 5:55 pm, chrisk <[email protected]> wrote:
>>
>> > I have previously seen Sound Recorder in the applications pane on my
>> > device, but lately it is not there.
>>
>> > How can I force Sound Recorder application to be built and installed
>> > to the target?
>>
>> > Are there any current limitations of this application?
>>
>> > Thanks,
>> > Chris
> >
>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"android-framework" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-framework?hl=en
-~----------~----~----~----~------~----~------~--~---