我從github上下載了一個android項目源代碼,並用Android Studio打開它,但是當我點擊「運行應用程序」按鈕,過了一段時間我得到這個錯誤:無法通過Android Studio安裝apk通過Android Studio安裝apk,通過Android Studio製作
Installation failed since the device possibly has stale dexed jars that don't match the current version (dexopt error). In order to proceed, you have to uninstall the existing application.
WARNING: Uninstalling will remove the application data!
Do you want to uninstall the existing application?
我在控制檯
$ adb push D:\work\zuoyexitong\third-part-projects\AndroidAudioRecorder\app\build\outputs\apk\app-debug.apk /data/local/tmp/cafe.adriel.androidaudiorecorder.example
$ adb shell pm install -r "/data/local/tmp/cafe.adriel.androidaudiorecorder.example"
pkg: /data/local/tmp/cafe.adriel.androidaudiorecorder.example
Failure [INSTALL_FAILED_DEXOPT]
得到這個錯誤,但我敢肯定,我以前不安裝此apk。如果我點擊「確定」讓Android Studio卸載應用程序,我得到這個錯誤
$ adb shell pm uninstall cafe.adriel.androidaudiorecorder.example
Unknown failure (Failure)
Error while Installing APK
我的Android Stuido版本是:2.2.3。
我用的項目是here
我的設備的Android版本是4.1.1。
我的問題看起來像this和this,但它們無法解決我的問題。
那麼如何解決這個問題呢?
重置我的設備後。問題解決了。 – BHawK