Installation Error: INSTALL_FAILED_UID_CHANGED

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

enter image description here

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> 
+2
source share
4 answers

Finally, I have a solution after several attempts, the solution was reset to factory settings of the phone and the problems are resolved. This is not a good solution, but it solves my problem.

+3
source

After rebooting the Android device and delete the folder from the device. my problem is resolved.

+1
source

Please familiarize yourself with this issue. This should cover your problem :)

Eclipse installation error: INSTALL_FAILED_UID_CHANGED

I also had this problem before - The most reliable solution is to destroy the emulator.

 emulator.exe -avd myAvdName -wipe-data 

Hello

Christopher

0
source

I had to delete the application data from the device and the problem was resolved. Use the rm command with care, make sure your application / package name is correct.

 adb shell cd /data/data rm -rf com.company.appname 
0
source

All Articles