Fixed
Status Update
Comments
va...@google.com <va...@google.com>
em...@google.com <em...@google.com>
em...@google.com <em...@google.com> #2
Thanks for the report!
I found there is a typo in your configuration:
# keep names of exception classes
-keepname class * extends java.lang.Throwable
which should be "keepnames".
I found there is a typo in your configuration:
# keep names of exception classes
-keepname class * extends java.lang.Throwable
which should be "keepnames".
an...@google.com <an...@google.com> #3
We had a similar issue previously: issue 113122600 .
But, I'm not able to repro the error. Without correcting the typo, I got:
$ java -jar build/libs/r8.jar --pg-conf ~/Downloads/proguard-rules.pro
Error in /usr/local/google/home/jsjeon/Downloads/proguard-rules.pro at line 2, column 6:
Expected [!]interface|@interface|class|enum
Compilation failed
which looks like the correct line/column numbers now.
But, I'm not able to repro the error. Without correcting the typo, I got:
$ java -jar build/libs/r8.jar --pg-conf ~/Downloads/proguard-rules.pro
Error in /usr/local/google/home/jsjeon/Downloads/proguard-rules.pro at line 2, column 6:
Expected [!]interface|@interface|class|enum
Compilation failed
which looks like the correct line/column numbers now.
Description
####################################################
Please provide all of the following information, otherwise we may not be able to route your bug report.
####################################################
1. Describe the bug or issue that you're seeing.
I built apk with C++ code (ABI: arm64-v8a) and want to Attach to Proccess for Debugging.
===
But I got error: error: Process is running. Use 'process interrupt' to pause execution.
===
And message on Event Log:
===
Attention! No symbol directories found - please check your native debug configuration
===
After 4 hours I understood, than my device has different architecture: armeabi-v7a
I consider, Android Studio should check Device's ABI before attaching and check apk for contain lib with this architecture.
And messages should look as:
Attention! Your Device has ABI: ..., but your APK has not required ABI. APK has libs with architecures: arm64-v8a, ... !
In addition to logs, please attach a screenshot or recording that illustrates the problem.
For more information on how to get your bug routed quickly, see
Build: AI-231.9392.1.2311.10809438, 202309141848
AI-231.9392.1.2311.10809438, JRE 17.0.7+0-17.0.7b1000.6-10550314x64 JetBrains s.r.o., OS Mac OS X(x86_64) v11.7.3, screens 1920.0x1080.0, 2560.0x1600.0; Retina
AS: Hedgehog | 2023.1.1 Beta 5
Kotlin plugin: 231-1.9.10-release-459-AS9392.1.2311.10809438
Android Gradle Plugin: 7.4.2
Gradle: 7.5
Gradle JDK: JetBrains Runtime version 17.0.7
NDK: from module: 26.0.10636728, from local.properties: (not specified), latest from SDK: 23.1.7779620
CMake: from local.properties: (not specified), latest from SDK: 3.22.1-g37088a8, from PATH: (unable to invoke cmake)
```