android (exception ActityNotFoundException)

132 Views Asked by At

I am working on an android game https://code.google.com/p/something-soft/ and I my log cat says that it is trying to fire the intent to the game, but then the main thread seems to die (with and ActivityNotFoundException) and then seems to freeze.

in the code repository I have submitted all files except /bin... including the most recent logcat output(/trunk/KingLand/log.txt), and debugger output(/trunk/KingLnad/debug.txt)

the emulator that I am running is Android platform 2.1-update1 with 2024MiB memmory if that can really cause any issues (I'm not sure)

any assistence would be appriciated.

edit: AndroidManifest.xml

$<?xml version="1.0" encoding="utf-8"?>
$  <manifest xmlns:android="http://schemas.android.com/apk/res/android"
$        package="android.app"
$        android:versionCode="1"
$        android:versionName="1.0">
$        <application android:icon="@drawable/icon" android:label="@string/app_name">
$        <activity android:name="com.Something.Soft.KingsLand"
$                    android:label="@string/app_name">
$             <intent-filter>
$                   <action android:name="android.intent.action.MAIN" />
$                   <category android:name="android.intent.category.LAUNCHER" />
$             </intent-filter>
$        </activity>
$        <activity android:name=".Tutorial"
$              android:label="@string/tutorial"
$              android:theme="@android:style/Theme.Dialog"/>
$        <activity android:name=".Prefs"
$              android:label="@string/settingsTitle"/>
$        <activity android:name=".Game"     // this is the where the intent should fire to
$              android:label="@string/gameTitle"/>
$        </application>
$</manifest> 
2

There are 2 best solutions below

2
On BEST ANSWER

The package attribute should be the package where your Activities are going to be.

In your AndroidManifest.XML, the manifest tag should declare on attribute package the package where your activities are.

It's going to be:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.Something.Soft"
    android:versionCode="1"
    android:versionName="1.0">
 //The others attributes.

You defined: "package="android.app"" And your Activity are on com.Something.Soft

You should also follow the code conventions, package names are full lower-case.

2
On

Your packages differ between the Activities. Assuming the "com.Something.Soft." package is where your Game activity lives, change the package="android.app" to package="com.Something.Soft".

You can alternatively explicitly spell out the full name where the activity is defined, i.e. <activity android:name="com.Something.Soft.Game"