In your AndroidManifest.xml) make sure you defined an intent filter
with a MAIN category:

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

If you don't, the activity cannot be started.

R/

On Mon, Dec 29, 2008 at 9:06 AM, Fender <[email protected]> wrote:
>
> i think i found the problem.
>
> when i boot up a hello android program, i get this:
>
>
> [2008-12-29 09:02:21 - Copy of HelloAndroid] Installing Copy of
> HelloAndroid.apk...
> [2008-12-29 09:02:23 - Copy of HelloAndroid] Success!
> [2008-12-29 09:02:23 - Copy of HelloAndroid] Starting activity
> com.android.hello.HelloAndroid on device
> [2008-12-29 09:02:25 - Copy of HelloAndroid] ActivityManager:
> Starting: Intent { comp={com.android.hello/
> com.android.hello.HelloAndroid} }
>
> when i boot up the app im writing, i get this:
>
> [2008-12-29 09:02:30 - Copy of Sudoku] Uploading Copy of Sudoku.apk
> onto device 'emulator-5554'
> [2008-12-29 09:02:30 - Copy of Sudoku] Installing Copy of
> Sudoku.apk...
> [2008-12-29 09:02:32 - Copy of Sudoku] Application already exists.
> Attempting to re-install instead...
> [2008-12-29 09:02:33 - Copy of Sudoku] Success!
> [2008-12-29 09:02:33 - Copy of Sudoku] \Copy of Sudoku\bin\Copy of
> Sudoku.apk installed on device
> [2008-12-29 09:02:33 - Copy of Sudoku] Done!
>
>
> its not starting the activity. any idea why???
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Beginners" 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-beginners?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to