问题标签 [android-studio-3.4]
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 - 在 Android Studio 中启用 R8 Shrinker 时超出 GC 开销限制
我正在使用 Android Studio 3.4 (Canary 9),当我构建我的应用程序时,它失败并出现以下错误
任务:app:transformClassesAndResourcesWithR8ForDebug
R8 是一个实验性功能。如果您遇到任何问题,请在https://issuetracker.google.com提交错误,使用“Shrinker (R8)”作为组件名称。您可以通过使用“android.enableR8=false”更新 gradle.properties 来禁用 R8。
AGPBI: {"kind":"warning","text":"缺少类:java.lang.instrument.ClassFileTransformer","sources":[{}],"tool":"D8"}
任务:app:transformClassesAndResourcesWithR8ForDebug 失败
FAILURE:构建失败并出现异常。
- 出了什么问题:任务“:app:transformClassesAndResourcesWithR8ForDebug”执行失败。
超出 GC 开销限制
当我通过放入 gradle.properties 禁用android.enableR8=false
R8时。一切正常。
那么如何在不禁用 R8 Shrinker 的情况下修复此错误?因为我真的很想测试 R8 的功能。
android - 数据绑定 NoSuchMethodError 与 buildtools 3.4.0
使用最新的 DataBinding 时
ANoSuchMethodError
在 Activity 加载时使应用程序崩溃。使用:
导致数据绑定成功工作。
这是崩溃:
如果我们想使用最新的构建工具,有什么办法可以解决这个问题吗?
android-studio - 将 Android Studio 升级到 3.4 后无法连接 adb
无法连接到 adb。检查事件日志是否存在可能的问题,验证 localhost 条目是否指向 127.0.0.1 或:: 1 用于 ipv4 或 ipv6
试过 adb kill-server, restart, invalidate restart 没有任何效果。此处报告了相同的问题https://issuetracker.google.com/issues/130791561
注意:我没有在工作室中添加任何文件或任何东西,它是新安装的工作室,格式化完整系统后仍然存在问题。
android-studio - Android Studio 更新到 3.4 时出错
我想将我的 android studio 版本从我当前的版本(3.3.2)更新到 3.4。
但是当我选择:
Help > Check for updates > Update and Restart
看起来它正在更新,几秒钟后我收到此错误:
“打开下载页面”链接只是让我下载 android studio
我真的不想重新下载android studio,有什么想法为什么会出现这个错误?
注意 -在问这个之前我已经检查了一些堆栈溢出线程,我发现最好的事情是,Invalidate Caches/Restart
但这并没有解决错误。
android-studio - Error related to resources_ap after upgrading to Android Studio 3.4
I upgraded Android Studio 3.4 today. I am no longer able to run the the app. I have cleaned the project, restarted Android studio many times. I have also invalidated cache to no avail. I am getting the following error when installing the app:
Could anyone offer a tip on how to remedy this?
Edit: I have two projects with different behaviors related to this issue:
- Project A initially had this issue. I disabled Instant Run per the answer, the problem was solved. I enabled Instant Run later, and Project A is still working fine.
- Project B also had this problem that has been remedied by turning of Instant Run. However, its problem will occur as soon as Instant Run is turned on. I do not what difference between these two projects results in this. One suspect is library C project. Library C is a part of Project A (i.e. its source code, resources are in Project A). However, Project B uses the aar of Library C as a module.
android-studio-3.4 - Android Studio 加载错误的项目
我有两个项目像这样在同一目录中共享我的库项目
现在,当我项目 1 工作正常时,假设现在我必须在项目 2 上工作,然后它加载项目 1 而不是项目 2。现在如果我删除项目 2 的 .idea 目录,它工作正常。但是当我再次打开项目 1 时,它会执行相同的操作并加载项目 2 而不是项目 1。这个问题有什么永久解决方案吗?
parsing - 从 ImageView 加载 URL
我需要通过单击 ImageView 在我的应用程序中加载一个 URL。我让应用程序加载,直到我开始尝试将意图(在 MainActivity.java 上)分配给我的 ImageViews(在 activity_main.xml 上)。
我试过 ImageButton vs ImageView;两者都有自己的一系列问题,我似乎无法找到答案。我终于放弃了 imageButton,现在在 ImageView 上试试运气。所有 Android 组件都是最新的,包括软件本身、gradle 和插件。
activity_main.xml
MainActivity.java
AndroidManifest.xml
目标是通过单击引用的 ImageView 打开应用程序内的意图的 url。但是由于在 MainActivity.java 中包含这个意图脚本,它不会构建,更不用说安装和启动了。我已经通过 Android 的模拟器在虚拟设备和实际设备上都尝试过它,但它都不会安装在任何一个设备上。
这是我在构建过程中从 LogCat 收到的错误消息...
此外,在以“ img .setOnClickListener...”开头的两个意图行中,可能值得一提的是“。”之前的“img”。是红色的。
显然我的意图有问题,我只是不确定是什么?任何建议。