Xamarin - 当我将我的应用程序发布到 google 商店时,我应该使用什么 apk 包
Xamarin - What apk package(s) should I use when I publish my app to the google store
在 Visual Studio 2019 年,我创建了一个存档文件夹,其中包含我计划发布到 google 商店的应用程序的 3 个签名 apk 文件。
signed-apks 文件夹中的文件名是:
com.blah1.app.apk
com.blah1.app-arm64-v8a.apk
com.blah1.app-armeabi-v7a.apk
我应该使用哪一个? Google Play 控制台似乎可以让我添加所有 3 个。您提供的任何其他信息也很好。
谢谢。
您应该上传所有三个。您正在为每个 ABI
生成一个 apk
Multiple APK support is a feature on Google Play that allows you to
publish different APKs for your application that are each targeted to
different device configurations. Each APK is a complete and
independent version of your application, but they share the same
application listing on Google Play and must share the same package
name and be signed with the same release key. This feature is useful
for cases in which your application cannot reach all desired devices
with a single APK.
在 Visual Studio 2019 年,我创建了一个存档文件夹,其中包含我计划发布到 google 商店的应用程序的 3 个签名 apk 文件。
signed-apks 文件夹中的文件名是:
com.blah1.app.apk
com.blah1.app-arm64-v8a.apk
com.blah1.app-armeabi-v7a.apk
我应该使用哪一个? Google Play 控制台似乎可以让我添加所有 3 个。您提供的任何其他信息也很好。
谢谢。
您应该上传所有三个。您正在为每个 ABI
生成一个 apkMultiple APK support is a feature on Google Play that allows you to publish different APKs for your application that are each targeted to different device configurations. Each APK is a complete and independent version of your application, but they share the same application listing on Google Play and must share the same package name and be signed with the same release key. This feature is useful for cases in which your application cannot reach all desired devices with a single APK.