2014-08-30 51 views
0

我收到這個錯誤,每當我嘗試上傳我的項目谷歌播放。不過,我最近做了一個重構 - 重命名我的項目包 - 「com.mike.myapplication1_0」。我清理並重建了文件,但我仍然收到此錯誤。我也更新了清單文件,以及...上傳APK,谷歌商店 - 不同的包名

enter image description here

這裏是我的清單 - (!整個谷歌Play商店)

<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
package="com.solomichael.myappppppp" > 

<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="18" /> 

<uses-permission android:name="android.permission.INTERNET" /> 
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> 

<application 
    android:allowBackup="true" 
    android:icon="@drawable/ic_launcher" 
    android:label="@string/app_name" 
    android:theme="@style/AppTheme" > 

    <meta-data android:name="com.google.android.gms.version" 
     android:value="@integer/google_play_services_version" /> 

    <activity 
     android:name="com.solomichael.myappppppp.MyAndroidAppActivity" 
     android:label="@string/app_name" > 
     <intent-filter> 
      <action android:name="android.intent.action.MAIN" /> 

      <category android:name="android.intent.category.LAUNCHER" /> 
     </intent-filter> 
    </activity> 
    <activity 
     android:name="com.solomichael.myappppppp.probability_act" 
     android:label="@string/title_activity_probability_act" 
     android:parentActivityName="com.solomichael.myappppppp.MyAndroidAppActivity" > 
     <meta-data 
      android:name="android.support.PARENT_ACTIVITY" 
      android:value="com.example.michael.myandroidappactivity.MyAndroidAppActivity" /> 
    </activity> 
    <activity 
     android:name="com.solomichael.myappppppp.showOldCards" 
     android:label="@string/title_activity_show_old_cards" 
     android:parentActivityName="com.solomichael.myappppppp.MyAndroidAppActivity" > 
     <meta-data 
      android:name="android.support.PARENT_ACTIVITY" 
      android:value="com.example.michael.myandroidappactivity.MyAndroidAppActivity" /> 
    </activity> 
</application> 

回答

0

包的名字應該是唯一的,這樣看起來別人已經使用:com.examplecom.mike.myapplication1_0你必須選擇另一個名字!

評論:
如果你已經在應用商店的應用程序,你改變了包名,並重新上傳該APK - 你失去所有當前用戶(他們的應用程序不會得到更新!)

0

在兩個<meta-data>元素的Activities你有屬性開始如下...

android:value="com.example. 

我不完全知道爲什麼你對那些Activities<meta-data>元素,但你EIT她需要更改這些值以反映您的包名,或者完全刪除<meta-data>元素,除非它們是絕對必要的。

相關問題