Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
J
jadx
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open-source
jadx
Commits
e0624ce9
Commit
e0624ce9
authored
Dec 21, 2018
by
Skylot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: use '$' as separator for inner classes in .jobf file (#415)
parent
7e8435cc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
DeobfPresets.java
jadx-core/src/main/java/jadx/core/deobf/DeobfPresets.java
+2
-2
ClassInfo.java
jadx-core/src/main/java/jadx/core/dex/info/ClassInfo.java
+4
-0
No files found.
jadx-core/src/main/java/jadx/core/deobf/DeobfPresets.java
View file @
e0624ce9
...
...
@@ -112,7 +112,7 @@ class DeobfPresets {
for
(
DeobfClsInfo
deobfClsInfo
:
deobfuscator
.
getClsMap
().
values
())
{
if
(
deobfClsInfo
.
getAlias
()
!=
null
)
{
list
.
add
(
String
.
format
(
"c %s = %s"
,
deobfClsInfo
.
getCls
().
getClassInfo
().
get
FullName
(),
deobfClsInfo
.
getAlias
()));
deobfClsInfo
.
getCls
().
getClassInfo
().
makeRaw
FullName
(),
deobfClsInfo
.
getAlias
()));
}
}
for
(
FieldInfo
fld
:
deobfuscator
.
getFldMap
().
keySet
())
{
...
...
@@ -136,7 +136,7 @@ class DeobfPresets {
}
public
String
getForCls
(
ClassInfo
cls
)
{
return
clsPresetMap
.
get
(
cls
.
get
FullName
());
return
clsPresetMap
.
get
(
cls
.
makeRaw
FullName
());
}
public
String
getForFld
(
FieldInfo
fld
)
{
...
...
jadx-core/src/main/java/jadx/core/dex/info/ClassInfo.java
View file @
e0624ce9
...
...
@@ -111,6 +111,10 @@ public final class ClassInfo {
return
pkg
.
isEmpty
()
?
shortName
:
pkg
+
"."
+
shortName
;
}
public
String
makeRawFullName
()
{
return
makeFullClsName
(
this
.
name
,
true
);
}
public
String
getFullPath
()
{
ClassInfo
usedAlias
=
getAlias
();
return
usedAlias
.
getPackage
().
replace
(
'.'
,
File
.
separatorChar
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment