I have a problem that i never had before. I have created an App with eclipse, so when I was finished I started it with eclipse,and everything does work. But when I start it by my self with the icon, there comes a toast message which says: activity not found. I haven´t any idea what to do because the Log says everything goes right. Eclipse can start my App, but i can´t?!
Please Help me!!
`<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="de.dered.ppg"
android:versionCode="1"
android:versionName="1.7.1" >
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="8"/>
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:icon="@drawable/icon"
android:label="@string/app_name" android:permission="android.permission.INTERNET">
<activity android:name="PPGActivity" android:screenOrientation="portrait" android:icon="@drawable/icon" android:launchMode="standard" android:label="@string/app_name" android:enabled="true">
<intent-filter>
<category android:name="android.intent.category.LAUNCHER" /><action android:name="android.intent.action.MAIN"/>
</intent-filter>
</activity>
<activity android:name="InfoActivity" android:screenOrientation="portrait"></activity>
<activity android:name="PlanActivity" android:screenOrientation="portrait"></activity>
<activity android:name="TerminActivity" android:screenOrientation="portrait"></activity>
<activity android:name="SplashActivity" android:screenOrientation="portrait" android:icon="@drawable/ppglogo2" android:launchMode="standard" android:label="@string/app_name" android:enabled="true">
</activity>
</application>
`
try: