- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经使用 android studio 在 flutter 中构建了一个应用程序,并试图在 Play 商店中发布它。
根据https://flutter.dev/docs/deployment/android#reviewing-the-build-configuration , "运行 flutter build appbundle
(运行 flutter 构建默认为发布构建。)"
但是,当我尝试在播放控制台上上传此内容时,我收到错误消息“您上传了一个在 Debug模式下签名的 APK 或 Android App Bundle。您需要在 Release模式下签署您的 APK 或 Android App Bundle。”
我应该怎么做?
从我的 gradle.build :
def keystoreProperties = new Properties()
def keystorePropertiesFile = rootProject.file('key.properties')
if (keystorePropertiesFile.exists()) {
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
}
android {
compileSdkVersion 29
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
lintOptions {
disable 'InvalidPackage'
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.rtterror.custom_snooze_alarm"
minSdkVersion 16
targetSdkVersion 29
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
}
signingConfigs {
release {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
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.debug
}
}
}
最佳答案
尝试修改您的 buildTypes block 。
buildTypes {
release {
signingConfig signingConfigs.release
}
}
关于android - 在 Release模式下 flutter 构建 appbundle,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65640066/
我正在使用 Symfony 3.4,当我尝试运行服务器时出现错误: In RegisterControllerArgumentLocatorsPass.php line 68: Class "AppB
自从将 flutter 1.9.1+hotfix.2 升级到,当我运行 flutter build appbundle 时,flutter 完成并出现错误: Initializing gradle..
我们将 flutter 版本从 1.00 升级到 1.7.8,然后通过 flutter build apk --flavor 制作 它会自动生成签名的apk文件。 但是我们升级到1.7.8之后我试过了
关闭。这个问题需要details or clarity .它目前不接受答案。 想改进这个问题吗? 通过 editing this post 添加细节并澄清问题. 关闭 5 年前。 Improve t
使用来自 oracle (http://docs.oracle.com/javase/7/docs/technotes/guides/jweb/packagingAppsForMac.html) 的
我有一个拥有超过 15 万用户的应用程序,直到现在我一直避免使用 appbundle 只是因为我不知道它是如何工作的,但上周我别无选择并发送了一个带有 appbundle 的更新。从那时起,许多用户报
我在这个结构中有一个包 Acme/Bundle/BlogBundle: app/... app/Resources/views/base.html.twig bin/... Acme/Bundle
我想将我的 Flutter AppBunble 上传到 PlayStore,但我从 PlayStore 收到了这条消息: AndroidManifest.xml 代码如下:
我正在尝试重命名生成的 .aab格式为 --- 的文件,有什么方法可以重命名输出包文件,类似于 apk 重命名。 复制和重命名我试过了,但问题是我需要将包命名为 --- .当我创建这里提到的任务时 H
我已经使用 android studio 在 flutter 中构建了一个应用程序,并试图在 Play 商店中发布它。 根据https://flutter.dev/docs/deployment/an
概述: 由于proguard,我在从基本模块访问按需动态功能模块的 Activity 时遇到了问题。 (很可能我猜) 描述: 我已经实现了 按需 带有应用程序包并上传到 Play 商店的动态功能模块。
我尝试使用 ant 和 Java.net 项目中的 AppBundler 将我的 Java 应用程序捆绑为 Mac .app"file"和 BitBucket . 它在 JDK/JRE 7u25 上运
所以我目前正在尝试创建一个 Appbundle,以便我可以将我的应用程序上传到 google play 商店。不幸的是,我在项目的签名发布部分遇到了问题。以下是来自终端的错误副本: FAILURE:
我正在尝试将 Java 应用程序编译到 Mac OS X 应用程序包中。我添加以下设置来设置当前工作目录: ... 在Contents/Resources/中有一个config目
您好,我构建应用程序并上传到 Google Play 控制台。我收到了这个错误! Error Your app has an apk with version code 1 that requests
当我尝试在Symfony2-project中实现自定义Twig扩展时,出现以下错误: Unable to register extension "AppBundle\Twig\Extension\Fi
我想使用“flutter build appbundle”发布 appBundle,但出现此错误。该项目已经迁移到 AndroidX。没有用到第三方库 compileSdkVersion: 28 ta
所以我有一个用 [UIImage imageNamed] 加载的 UIImage。然后我将该文件保存到我的文档目录中。我的问题是该文件最初的分辨率为 240。当我从模拟器的文档目录中检索文件时,它现在
我想通过 session 进行登录和注销。但我收到错误。 "Attempted to call an undefined method named "getRequest" of class "App
目前,如果使用 Unity 的 Internal 系统构建,我的游戏构建成功。现在因为我需要 AppBundle 而不是 APK 我尝试将构建系统更改为 Gradle 如下图所示: 但是,在 Grad
我是一名优秀的程序员,十分优秀!