You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to modify the target package to place the mapping from DexGuard, just in case Ruler can't find the mapping file.
This is the code from #87 (comment) task.mappingFile.set(File(project.buildDir, "outputs/dexguard/mapping/bundle/${variant.name}/mapping.txt"))
The default location is outputs/dexguard/mapping/bundle/sit/release/mapping.txt
There's a DexGuard feature to specify the package output, and I change it to:
After carefully reviewing the logs, I found that Ruler puts the report files here: projectname/app/build/reports/ruler/sitRelease/report.html. Therefore, the correct package should be sitRelease.
Upon examining my mapping, it should be: build/outputs/dexguard/mapping/bundle/sitRelease/mapping.txt. After changing the mapping accordingly, it now works.
However, this ticket should probably remain open with a different title. I'll change it to "Release Build with DexGuard & Product Flavor Not Mapped in the Report."
arifrgilang
changed the title
Release Build with DexGuard not mapped in the report
Release Build with DexGuard & Product Flavor Not Mapped in the Report
Jun 21, 2024
Current behavior
I ran
:app:analyzeSitReleaseBundle
with DexGuard enabled."Sit" is the build flavor.
The names were not mapped in the report.
Expected behavior
The names should be mapped correctly base on this comment #87 (comment)
Steps to reproduce
:app:analyzeSitReleaseBundle
with DexGuard enabled. overwriteUnprotected = falseVersions
DexGuard 9.x.x
Ruler 1.4.0
Android Gradle Plugin 7.3.1
Gradle 7.4
Anything else?
I tried to modify the target package to place the mapping from DexGuard, just in case Ruler can't find the mapping file.
This is the code from #87 (comment)
task.mappingFile.set(File(project.buildDir, "outputs/dexguard/mapping/bundle/${variant.name}/mapping.txt"))
The default location is
outputs/dexguard/mapping/bundle/sit/release/mapping.txt
There's a DexGuard feature to specify the package output, and I change it to:
outputs/dexguard/mapping/bundle/sit/mapping.txt
outputs/dexguard/mapping/bundle/release/mapping.txt
outputs/dexguard/mapping/bundle/sitRelease/mapping.txt
outputs/dexguard/mapping/bundle/sitrelease/mapping.txt
However, it is still not working.
I also tried changing the DexGuard configuration to
overwriteUnprotected = true
and with all the package name above, but it is still not working.The text was updated successfully, but these errors were encountered: