I have this error every time I intend to install an application on my device using Eclipse Juno.
Installation Error: INSTALL_FAILED_UID_CHANGED
I also tried to uninstall the application, clean up the project, re-open Eclipse and reboot the system and phone.
and the problem still exists.
logcat said No content provider was found to revoke the recall: file: ///data/local/tmp/STU.apk but I donβt understand what he said (Eclipse) about it.
I do not know what to do now.
please, help

EDIT: Added by AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="amalgame.trainer.ultimate" android:versionName="1" android:versionCode="1"> <uses-sdk android:minSdkVersion="6" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"></uses-permission> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> <uses-permission android:name="android.permission.WRITE_SETTINGS" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.WAKE_LOCK"/> <uses-feature android:name="android.hardware.camera" android:required="true"/> <uses-feature android:name="android.hardware.bluetooth" android:required="false"/> <uses-feature android:name="android.hardware.telephony" android:required="false"/> <supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:anyDensity="false" /> <application android:allowBackup="true" android:icon="@drawable/iconfree4848" android:label="@string/app_name" android:theme="@style/CustomTheme" android:logo="@drawable/iconfree4848" > <uses-library android:name="com.google.android.maps" /> <activity android:name="amalgame.trainer.ultimate.TrainerActivity" android:label="@string/app_name" android:screenOrientation="portrait" android:configChanges="locale|orientation|keyboardHidden" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name="com.google.ads.AdActivity" .... </application> </manifest>
source share