eclipse - Android compilation trouble after adding and removing BlackBerry SDK -


i installed bb tools eclipse, added , removed bb nature 1 of projects. , now, can't compile (for android).

enter image description here

eclipse told me troubles in androidmanifest.xml:

native-code: armeabi androidmanifest.xml /vitocarsandroidapp androidmanifest.xml blackberry verifying problem

but manifest ok, no 1 line highlighted:

<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android"     package="com.asap.vitocarsandroidapp"     android:versioncode="5"     android:versionname="1.04" >      <uses-sdk         android:minsdkversion="8"         android:targetsdkversion="17" />      <uses-permission android:name="android.permission.internet" />     <uses-permission android:name="android.permission.call_phone" />     <uses-permission android:name="android.permission.read_phone_state" />      <application         android:name="com.asap.vitocarsandroidapp.system.vitocarsapplication"         android:allowbackup="true"         android:icon="@drawable/ic_launcher"         android:label="@string/app_name"         android:theme="@style/apptheme" >         <activity             android:name="com.asap.vitocarsandroidapp.loginactivity"             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="com.asap.vitocarsandroidapp.tableviewactivity"             android:label="@string/title_activity_table_view" >         </activity>         <activity             android:name="com.asap.vitocarsandroidapp.partactivity"             android:label="@string/title_activity_part" >         </activity>         <activity             android:name="com.asap.vitocarsandroidapp.photoviewactivity"             android:label="@string/title_activity_photo_view" >         </activity>         <activity             android:name="com.asap.vitocarsandroidapp.userregisteractivity"             android:label="@string/title_activity_user_register" >         </activity>         <activity             android:name="com.asap.vitocarsandroidapp.confirmphoneactivity"             android:label="@string/title_activity_confirm_phone" >         </activity>         <activity             android:name="com.asap.vitocarsandroidapp.officeactivity"             android:label="@string/title_activity_office" >         </activity>         <activity             android:name="com.asap.vitocarsandroidapp.priceofferactivity"             android:label="@string/title_activity_price_offer" >         </activity>         <activity             android:name="com.asap.vitocarsandroidapp.regionorderactivity"             android:label="@string/title_activity_region_order" >         </activity>         <activity             android:name="com.asap.vitocarsandroidapp.mapview"             android:label="@string/title_activity_map_view" >         </activity>     </application>  </manifest> 

i spent lot of time, trying solve it.

maybe, can me?

had exact same issue.

only uninstalling blackberry plugin solved me.

i guess blcackberry plugin still left remainders in validation process of eclipse, though removed blackberry nature project.


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -