根据这个答案如何解决"你的APK的版本代码需要高于2".在Google Play的开发者控制台中?我刚刚将版本代码从2更改为3,但无法上传构建版本.
在我上传apk之前,这是我的旧清单
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="mypackage name"
android:installLocation="auto"
android:versionCode="28"
android:versionName="1.0028" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="19" />
.....
Run Code Online (Sandbox Code Playgroud)
这是我必须在Android开发者控制台上传的新版本代码.看我的清单
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="mypackage name"
android:installLocation="auto"
android:versionCode="2"
android:versionName="2.0001" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="19" />
......
Run Code Online (Sandbox Code Playgroud)
我不知道这个问题是什么.有帮助吗?

在清单中没有添加android.permission.READ_PHONE_STATE.允许.
当我上传新的apk版本错误时,为什么会出现错误.
您的应用有一个版本号为1的apk,它请求以下权限:android.permission.READ_PHONE_STATE.在APK中使用这些权限的应用程序需要设置隐私策略.
我的清单文件.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.my.package.name">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:name=".utils.PreferenceManager"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:largeHeap="true"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".SplashScreen"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".MainActivity"
android:screenOrientation="portrait" />
<activity
android:name=".CategoryListActivity"
android:screenOrientation="portrait" />
<activity
android:name=".ImagesActivity"
android:screenOrientation="portrait" />
</application>
</manifest>
Run Code Online (Sandbox Code Playgroud) permissions android android-manifest android-studio google-console-developer
在 google play 控制台应用程序发布问题。我第一次使用 google play 发布我的应用程序。还显示应用状态:生产,更新状态:审查中。但在 google play 上找不到。现在我应该怎么做?
android google-play google-play-services google-play-console
如何设置Flutter应用程序的版本名称和版本代码,而无需进入Android和iOS设置?
在我的pubspec.yaml中
version: 2.0.0
Run Code Online (Sandbox Code Playgroud)
但我看不到内部编号的地方。