aab的签名与apk文件相同吗?

时间:2019-10-16 05:13:19

标签: android flutter android-app-bundle app-bundle

我正在制作要发布的aab文件。

我们正在使用 flutter

最新版本是将签名的apk文件上传到Google Play商店,但这一次我们不能分别上传32位和64位apk,因此我们尝试使用 appbundle

我们在发布apk文件时确实具有签名。

并且由于发布操作(将apk文件上传到Google Play)是由其他团队处理的,所以我不知道我是否需要为aab文件的发布使用新的签名。

这是我的设置,与上次相同

signingConfigs {
        release {
            keyAlias keystoreProperties['keyAlias']
            keyPassword keystoreProperties['keyPassword']
            storeFile file(keystoreProperties['storeFile'])
            storePassword keystoreProperties['storePassword']
        }
    }
    buildTypes {
        release {
            // TODO: Add your own signing config for the release build.
            // Signing with the debug keys for now, so `flutter run --release` works.
            signingConfig signingConfigs.release
        }
    }

我有key.properties文件

storePassword=XXX
keyPassword=XXX
keyAlias=XXX
storeFile=O:\\sourceCode\\key\\key.keystore

对于发布,我将构建变体设置为发布,如flutter official doc

中所述

1 个答案:

答案 0 :(得分:0)

只需“否”,就不需要新的签名来创建应用程序捆绑包。您的旧签名可以正常工作