问题标签 [android-app-bundle]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
android - AndroidPublisher API 404 带有“找不到符号文件的 APK”。尝试上传 Android App Bundle 时
我正在尝试使用AndroidPublisher API从我的 CI 服务器上传应用程序包。到目前为止,我已经完成了所有设置和工作,除了捆绑包上传后(我看到大量网络流量),我收到以下错误消息:
有什么想法可能导致这种情况吗?
这是我正在使用的 API:https ://developers.google.com/android-publisher/api-ref/edits/bundles/upload 。
哦,还有一点我应该提到的是,使用控制台手动上传 aab 效果很好。
android - 在设备上安装 Android App Bundle
我使用新的 Android App Bundle 格式构建了我的项目。有了 APK 文件,我可以将 APK 下载到我的设备上,打开它,然后立即安装应用程序。我以捆绑包(.aab 格式)的形式下载了我的应用,运行 Android 8.1 的 Nexus 5X 无法打开该文件。有什么方法可以像 APK 一样方便地在设备上安装 AAB?
android - 使用 Android App Bundle 减少 react-native apk 大小
有没有办法使用 Android App Bundle 来减小 android 应用程序的大小,并在 react-native 项目中按需交付功能?
java - Android App Bundle introduces Resource Not found crash in Android app
By using Android's new Android App Bundle, I have received a Resource Not Found
error in 2 of my Google Play Store apps.
Here is the stacktrace from fabric for one of the apps:
build.gradle
dependencies:
One more thing, it is happening only on Android 4 operating system, not on newer versions of Android. I have found that other apps are having the same problem of Resource Not Found
, which was not existing before using Android's app bundle. Is there some problem in the library or code or it is because of the beta version of Android's app bundle?
I have also found the resource drawable due to which it crashes:-
I think this question is also related to this one: Resource Not Found error res/drawable/abc_switch_thumb_material.xml after adding SwitchCompat in Android App Bundle
android - 使用 aapt 构建新的 Android App Bundle 失败
我正在尝试设置通过 Gradle 构建新的 Android App Bundle。我正在使用以下命令进行构建:
(live
是我的味道)
构建总是失败:
我阅读了它需要的文档aapt2
,应该通过android.enableAapt2=true
in启用它gradle.properties
,但错误是一样的。
android - 从命令行签署 Android App Bundle
有人知道如何从命令行使用新的密钥库对 .aab 文件进行签名吗?这里的文档提到我们可以使用 jarsigner 从命令行签署我们的应用程序包。但我找不到命令行?有人知道命令行吗?
将我的捆绑包上传到 Google Play 时出现此错误:
我尝试使用以下命令对应用程序包进行签名:
非常感谢。
android - 用于创建应用程序包的 Android Studio 3.2 Canary 15 中的 Gradle 同步失败
我的要求是生成应用程序包,以实现我们需要安装(1)-Android 3.2 Canary 15。(2)-Android gradle 插件版本在 pproject 级别 build.gradle 中应该是 3.2.0+ 所以我有这个:classpath' com.android.tools.build:gradle:3.2.0-alpha15' 和 gradle 版本在 gradle-wrapper.properties 中应该是 4.5+。下面是我的项目级 build.gradle 文件。这里要注意的点是:classpath 'com.android.tools.build:gradle:3.2.0-alpha15'classpath 'com.google.gms:google-services:4.0.1' ext.play_services_version = '14.0.0 ' // 顶级构建文件,您可以在其中添加所有子项目/模块通用的配置选项。
这个 play_services_version 用于我的一个模块中,以保持 firebase 和 google play 服务的一致性。请参阅下面我使用过的模块的 build.gradle 文件依赖项块。
在我的 gradle-wrapper.properties 文件中,我使用的是 gradle 版本 4.6
现在来解决问题:每次使用以下屏幕截图时,gradle 同步失败:无法解决:com.google.android.gms:play-services-*****
无法解决:com.google.firebase:firebase-*****
从 play-services 开始:play-services-map、play-services-analytics、play-services-location 等,从 firebase 开始是 firebase-crash、firebase-core、firebase-invite、firebase-config。提前致谢。
android - 从 Android App Bundle 生成通用 APK
我有一个应用程序包文件,现在我想生成一个可以安装到所有设备的通用 APK。我尝试使用此命令生成通用 APK:
但是,我得到的是 .apks(不是 .apk),我无法直接安装到任何设备上。任何人都知道如何获得通用的 .apk 文件而不是 .apks 吗?
非常感谢你。
android - 在运行时为 android dex 错误构建新的应用程序包
我正在按照https://developer.android.com/guide/app-bundle/build上的说明构建新的 android app-bundle,但是从 Play 商店安装时出现错误。
我在构建中包含以下内容:
multidex-keep.pro:
android - 在 Google Play 商店上传 App Bundle (aab) 时收到以下警告
将 App Bundle(aab) 上传到 Google Play 商店时收到以下警告
设备支持已删除警告:停用此 APK 将导致您的应用可用于在更少类型的设备上进行新安装。提示:如果这是意外更改,请在新版本中保留此 APK,或确保您的新 APK 支持所有当前支持的设备。
当我使用 assembleRelease 构建项目并上传 apk 文件而不是使用 bundleRelease 构建项目并上传 aab 文件时,警告消失了。
这对于第一次使用 Appbundle 部署是正常的还是我应该担心?