2016-09-24 61 views
1

我正試圖在谷歌上播放我的apk。 apk文件是unity3d。谷歌播放不會讓我成爲我已經有版本。我在google play上得到這個消息。你需要爲你的APK使用不同的版本代碼,因爲你已經有了一個版本代碼1.我已經重建了項目,並將版本更改爲2.我還對android manifest腳本,我仍然無法上傳apk文件。這裏是我做了改變,所以我可以在谷歌播放上傳腳本:您需要爲您的APK使用不同的版本代碼,因爲您已經擁有版本代碼爲1的版本。如何更改版本?

{

<?xml version="2.0" encoding="utf-8"?> 
 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="2" android:versionName="1.7" package="com.Be.Jackson" android:installLocation="preferExternal"> 
 
    <supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:smallScreens="true" android:xlargeScreens="true" /> 
 
    <application android:icon="@drawable/app_icon" android:label="@string/app_name" android:theme="@style/UnityThemeSelector" android:debuggable="false" android:isGame="true" android:banner="@drawable/app_banner"> 
 
    <activity android:label="@string/app_name" android:name="com.unity3d.player.UnityPlayerActivity" android:screenOrientation="fullSensor" android:launchMode="singleTask" android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|uiMode|screenSize|smallestScreenSize|fontScale"> 
 
     <intent-filter> 
 
     <action android:name="android.intent.action.MAIN" /> 
 
     <category android:name="android.intent.category.LAUNCHER" /> 
 
     <category android:name="android.intent.category.LEANBACK_LAUNCHER" /> 
 
     </intent-filter> 
 
     <meta-data android:name="unityplayer.UnityActivity" android:value="true" /> 
 
    </activity> 
 
    <activity android:name="com.google.games.bridge.NativeBridgeActivity" android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen" /> 
 
    <!-- Required for Nearby Connections API --> 
 
    <meta-data android:name="com.google.android.gms.nearby.connection.SERVICE_ID" android:value="" /> 
 
    <!-- the space in these forces it to be interpreted as a string vs. int --> 
 
    <meta-data android:name="com.google.android.gms.games.APP_ID" android:value="\ 643756129390" /> 
 
    <meta-data android:name="com.google.android.gms.games.unityVersion" android:value="\ 0.9.34" /> 
 
    <meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" /> 
 
    <activity android:exported="false" android:name="com.google.android.gms.common.api.GoogleApiActivity" android:theme="@android:style/Theme.Translucent.NoTitleBar" /> 
 
    </application> 
 
    <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="23" /> 
 
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> 
 
    <uses-feature android:glEsVersion="0x00020000" /> 
 
    <uses-permission android:name="android.permission.INTERNET" /> 
 
    <uses-feature android:name="android.hardware.sensor.accelerometer" android:required="false" /> 
 
    <uses-feature android:name="android.hardware.touchscreen" android:required="false" /> 
 
    <uses-feature android:name="android.hardware.touchscreen.multitouch" android:required="false" /> 
 
    <uses-feature android:name="android.hardware.touchscreen.multitouch.distinct" android:required="false" /> 
 
</manifest>

}

{

<?xml version="2.0" encoding="utf-8"?> 
 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.Be.Jackson" android:installLocation="preferExternal" android:versionName="2.0" android:versionCode="2"> 
 
    <supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:xlargeScreens="true" android:anyDensity="true" /> 
 
    <application android:theme="@style/UnityThemeSelector" android:icon="@drawable/app_icon" android:label="@string/app_name" android:debuggable="true"> 
 
    <activity android:name="com.unity3d.player.UnityPlayerActivity" android:label="@string/app_name"> 
 
     <intent-filter> 
 
     <action android:name="android.intent.action.MAIN" /> 
 
     <category android:name="android.intent.category.LAUNCHER" /> 
 
     </intent-filter> 
 
     <meta-data android:name="unityplayer.UnityActivity" android:value="true" /> 
 
    </activity> 
 
    </application> 
 
    <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="23" /> 
 
</manifest>

}

回答

0

無論你的版本代碼is..add它由1

android:versionCode="X + 1" 
+0

它沒有工作。 –

0

它在你的gradle這個文件,並且被寫入到你的清單(如果你不使用gradle產出) 。

1

只需更改清單中的versionCode即可。您當前的versionCode爲2,將其更改爲3

更換

android:versionCode="2"

android:versionCode="3"

每次上傳新版本,由1

增加您的versionCode

您還應該嘗試在build.gradle中修改versionCode和versionName。

defaultConfig { 
    applicationId "com.you.yourpackage" 
    minSdkVersion XX 
    targetSdkVersion XX 
    versionCode 3  // new versionCode 
    versionName "1.7" // new versionName 
} 
相關問題