Hello all! I have an error on runing my app. I am getting this error:
Installation error: INSTALL_PARSE_FAILED_MANIFEST_MALFORMED [2011-11-09 11:43:46 - news] Please check logcat output for more details. [2011-11-09 11:43:46 - news] Launch canceled! my cat log is: attach of thread binder thred #3 faild my app show this error only when I tries to add a new activite to my app the name of the activite is: Israelinfo.IsraelActivity here my manifest: <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.News" android:versionCode="1" android:versionName="1.0"> <uses-sdk android:minSdkVersion="10" /> <application android:icon="@drawable/icon" android:label="@string/ app_name"> <activity android:name="main.start" /> <activity android:name=".NewsActivity" android:label="@string/app_name"> </activity> <activity android:name="startPakage.start"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name=".WebActivity"/> <activity android:name="nrgNews.NewsActivityNrg"/> <activity android:name="radio.radioActivite"/> <activity android:name="global.menuSettings"/> <activity android:name="Israelinfo.IsraelActivity"/> </application> <uses-permission android:name="android.permission.INTERNET"></uses- permission> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"></uses- permission> <uses-permission android:name="android.permission.READ_PHONE_STATE"></uses-permission> </manifest> thanks for the help -- You received this message because you are subscribed to the Google Groups "Android Developers" 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-developers?hl=en

