如何更新apk Android [已关闭]

问题描述 投票:0回答:1

您好,我已经创建了一个应用,该应用已在Play商店中发布。我有三个问题。 1.上传新应用程序时,密钥在哪里,放在哪里? 2.我应该在哪里上传新应用? 3如何连接MySQL dB?我使用此步骤上传了https://ionicframework.com/docs/v1/guide/publishing.html,我已在我的app-data.ts文件中连接了dB]

android angular ionic3
1个回答
1
投票

首先,如果应用已发布,则必须具有密钥。在我所有的项目中,密钥都必须位于platform / android内,并且必须在release-signing.properties文件中设置密钥库和密码,例如:

storeFile=key.keystore #keystore file
keyAlias=Alias #Alias of keystore
key.store=key.keystore #keystore file
key.alias=Alias #Alias of keystore

storePassword=passwordstore123 #password of store
keyPassword=passwordkey123 #key

当使用--release选项进行构建时,cordova将寻找在第一个选项上设置的发行签名文件和密钥库文件。

希望它可以帮助您。

© www.soinside.com 2019 - 2024. All rights reserved.