我需要弄清楚如何为我的Android应用程序获取或制作内部版本号.我需要在UI中显示内部版本号.
我必须做点什么AndroidManifest.xml吗?
在 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)
但我看不到内部编号的地方。
我的主要班级: -
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
public class Splash extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_splash);
}
}
Run Code Online (Sandbox Code Playgroud)
manifeast: -
package="aaa.amit.com"
android:versionCode="1"//that i have change android:versionCode="2"
android:versionName="1.0" >//android:versionName="1.0.1"
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="18" />
Run Code Online (Sandbox Code Playgroud)
任何伙伴都可以告诉我如何更改我的版本....谢谢你.