Pri*_*ckZ 0 java eclipse android
我正在Eclipse中开发一个Android应用程序,但是当我清理,构建和调试它时,它会在我的控制台中显示以下内容:
[2013-06-05 09:05:37 - TSRAndroidSystem] ------------------------------
[2013-06-05 09:05:37 - TSRAndroidSystem] Android Launch!
[2013-06-05 09:05:37 - TSRAndroidSystem] adb is running normally.
[2013-06-05 09:05:37 - TSRAndroidSystem] Performing com.lk.lankabell.android.activity.LoginPage activity launch
[2013-06-05 09:05:37 - TSRAndroidSystem] Automatic Target Mode: launching new emulator with compatible AVD 'test'
[2013-06-05 09:05:37 - TSRAndroidSystem] Launching a new emulator with Virtual Device 'test'
[2013-06-05 09:05:49 - Emulator] Failed to create Context 0x3005
[2013-06-05 09:05:49 - Emulator] emulator: WARNING: Could not initialize OpenglES emulation, using software renderer.
[2013-06-05 09:05:51 - TSRAndroidSystem] New emulator found: emulator-5554
[2013-06-05 09:05:51 - TSRAndroidSystem] Waiting for HOME ('android.process.acore') to be launched...
[2013-06-05 09:06:42 - TSRAndroidSystem] HOME is up on device 'emulator-5554'
[2013-06-05 09:06:42 - TSRAndroidSystem] Uploading TSRAndroidSystem.apk onto device 'emulator-5554'
[2013-06-05 09:06:44 - TSRAndroidSystem] Installing TSRAndroidSystem.apk...
[2013-06-05 09:07:13 - TSRAndroidSystem] Re-installation failed due to different application signatures.
[2013-06-05 09:07:13 - TSRAndroidSystem] You must perform a full uninstall of the application. WARNING: This will remove the application data!
[2013-06-05 09:07:13 - TSRAndroidSystem] Please execute 'adb uninstall com.lk.lankabell.android.activity' in a shell.
[2013-06-05 09:07:13 - TSRAndroidSystem] Launch canceled!
Run Code Online (Sandbox Code Playgroud)
我的模拟器正在运行.
这是一个错误,警告还是说我必须解锁我的android模拟器屏幕?
这通常发生在多台计算机上进行开发时.
从Eclipse安装应用程序时,它使用调试密钥库对应用程序进行签名.不同的计算机具有不同的调试密钥库(它们只是自动生成),因此您必须在再次安装之前从设备中完全删除该应用程序.
不知道为什么会在模拟器上发生这种情况,但只是从模拟器中完全删除应用程序,它应该可以工作.
实际上,当我使用手机测试我的应用程序时,这个场景已经为我多次使用了
这是因为您在TSRAndroidSystem手机中安装了alredy.发生错误,因为手机中安装的应用程序使用debug keystore的系统不同.
但在你的情况下,它发生在模拟器中.它真的对我很好.
您是否直接将TSRAndroidSystem.apk开发人员插入到您的模拟器中的另一个系统中?
无论如何我都可以从你的模拟器中安装alredy安装的应用程序.然后运行您的项目,以便应用程序将与debug keystore您的系统签署希望这将解决您的问题