2011-10-11 51 views
0

幾個月前,我寫了一個電臺的Android手機應用程序。我在模擬器和手機上測試過它,當我直接從eclipse推送到手機時,它們都運行良好。日食問題推送和運行apk的移動電話

現在我想對應用程序進行一些更改並最終確定它,但是現在我的問題是我無法再通過手機從Eclipse運行它。

當我在模擬器中測試一切都很好。如果我將APK複製到手機安裝它,一切都很好。

在Eclipse控制檯告訴我說:

[2011-10-11 11:51:30 - Radio54House] Android Launch! 
[2011-10-11 11:51:30 - Radio54House] adb is running normally. 
[2011-10-11 11:51:30 - Radio54House] Performing com.Radio54House.Radio54House activity launch 
[2011-10-11 11:51:32 - Radio54House] WARNING: Unknown device API version! 
[2011-10-11 11:51:32 - Radio54House] Uploading Radio54House.apk onto device '0288424643204157' 
[2011-10-11 11:51:32 - Radio54House] Installing Radio54House.apk... 
[2011-10-11 11:51:32 - Radio54House] Success! 
[2011-10-11 11:51:32 - Radio54House] Starting activity com.Radio54House.Radio54House on device 0288424643204157 
[2011-10-11 11:51:32 - Radio54House] New package not yet registered with the system. Waiting 3 seconds before next attempt. 
[2011-10-11 11:51:35 - Radio54House] Starting activity com.Radio54House.Radio54House on device 0288424643204157 
[2011-10-11 11:51:36 - Radio54House] New package not yet registered with the system. Waiting 3 seconds before next attempt. 
[2011-10-11 11:51:39 - Radio54House] Starting activity com.Radio54House.Radio54House on device 0288424643204157 
[2011-10-11 11:51:39 - Radio54House] New package not yet registered with the system. Waiting 3 seconds before next attempt. 
[2011-10-11 11:51:42 - Radio54House] Starting activity com.Radio54House.Radio54House on device 0288424643204157 
[2011-10-11 11:51:42 - Radio54House] New package not yet registered with the system. Waiting 3 seconds before next attempt. 
[2011-10-11 11:51:45 - Radio54House] Starting activity com.Radio54House.Radio54House on device 0288424643204157 
[2011-10-11 11:51:45 - Radio54House] ActivityManager: Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=com.Radio54House/.Radio54House } 
[2011-10-11 11:51:45 - Radio54House] ActivityManager: Error type 3 
[2011-10-11 11:51:45 - Radio54House] ActivityManager: Error: Activity class {com.Radio54House/com.Radio54House.Radio54House} does not exist. 

這是第二一天,我Searchin的谷歌沒有結果。我唯一發現一些寫信的人首先清理了這個項目,但那並沒有幫助我。

如果需要在這裏也是我的AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
     package="com.Radio54House" 
     android:versionCode="1" 
     android:versionName="1.0"> 
    <uses-sdk android:minSdkVersion="8" /> 
    <uses-permission android:name="android.permission.INTERNET"></uses-permission> 
    <application android:icon="@drawable/icon" android:label="@string/app_name"> 
     <activity android:name=".Radio54House" 
        android:label="@string/app_name" 
        android:theme="@android:style/Theme.NoTitleBar" 
        android:screenOrientation="portrait" 
        > 
      <intent-filter> 

       <category android:name="android.intent.category.LAUNCHER" /> 
       <action android:name="android.intent.action.MAIN" /> 
      </intent-filter> 
     </activity> 
    <activity android:name=".RadioTab" /> 
    <activity android:name=".NewsTab" /> 
    <activity android:name=".ChartGroup" /> 
    <activity android:name=".ChartSelector" /> 
    <activity android:name=".House27Tab" /> 
    <activity android:name=".ClubFuelTab" /> 
    </application> 
</manifest> 

任何幫助嗎?

回答

1

您是否嘗試重新啓動設備? 我想我也有這個errormessage,我試着重新啓動設備並在設備上手動卸載應用程序。也許它的工作原理...

+0

是的,我已經嘗試重新啓動我的手機。 apk也會在手機上刪除。 如果我手動安裝apk並嘗試通過Eclipse進行更新,似乎所有工作都正常,應用程序啓動但apk不會更新。 我感覺這是一個讀/寫權限問題。 對於我使用的其他信息: 'Eclipse版本:Helios Service Release 2; Build ID:20110218-0911 Android SDK R13 Eclipse SDK的Android SDK R12插件 – DeeFour

+0

今天我使用另一款手機進行了測試,在此基礎上它正常工作。所以這似乎是我的手機有問題。我的LG Optimus 2x手機根植於SuperOne Click,也許這就是問題所在。 – DeeFour

+0

現在它工作。我做了從V10C到V10D的軟件更新,現在一切正常。 – DeeFour