您需要为APK使用不同的版本代码,因为您已经拥有版本代码为8

时间:2017-09-29 17:46:47

标签: android apk build.gradle

请在标记问题重复之前等待。我已经看过所有相关问题了。但我无法弄清楚问题所在。这是旧版本:

minSdkVersion 14
targetSdkVersion 26
versionCode 8
versionName "1.5"

这是新版本代码:

minSdkVersion 14
targetSdkVersion 26
versionCode 20
versionName "2.0"

我正在使用android studio版本3.0 beta 6 并解决我已经做过的问题。 1.使高速缓存/重新启动无效 2.清理构建和重建项目 3.尝试使用不同的apk版本代码和版本名称 4.禁用即时运行

这是应用程序的清单文件:

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

<application
    android:name=".App"
    android:allowBackup="true"
    android:hardwareAccelerated="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <activity
        android:name=".MainActivity"
        android:configChanges="orientation|keyboardHidden|screenSize"
        android:label="@string/app_name"
        android:launchMode="singleTop"
        android:theme="@style/AppTheme.NoActionBar">
        <intent-filter>
            <action android:name="android.intent.action.MAIN"/>

            <category android:name="android.intent.category.LAUNCHER"/>
        </intent-filter>
    </activity>
    <activity

1 个答案:

答案 0 :(得分:0)

大约一个小时后,我能够解决我的问题。我刚刚用android studio 2.3.3(最新稳定版)签了我的APK。它起作用了。