Skylot
39331d9120
fix: remove deprecated --deobf-rewrite-cfg ( #1513 )
2022-06-06 19:53:47 +01:00
Skylot
5099e02c9b
fix(gui): correct merge for plugin options from command line ( #1490 )
2022-05-23 19:44:49 +01:00
Skylot
49137c9751
fix(cli): don't ignore critical errors ( #1150 )
...
Thrown java.lang.Error was ignored and not logged.
2022-05-19 23:12:19 +01:00
Bruno Oberle
9a9ac4308e
fix(cli): use correct converter for "--decompilation-mode" option ( #1434 )(PR #1435 )
2022-04-04 13:47:30 +01:00
Skylot
d8306cb1c0
feat: add 'simple' decompilation mode
2022-03-23 18:16:54 +03:00
Skylot
7030daeccd
fix(cli): resolve regression in applying '-v' and '-q' options
2022-02-24 19:52:58 +00:00
Skylot
54683e3198
feat: plugin options, add verify checksum option for dex input ( #1385 )
2022-02-21 19:44:00 +00:00
Skylot
09335395f5
doc: update option description
2022-02-20 16:51:36 +00:00
Skylot
57e3dd8f15
feat(cli): improve single file mode ( #1344 )( #1384 )
2022-02-20 15:04:59 +00:00
Skylot
a9bbadd602
feat: add option for deobfuscation map file handle mode ( #1351 )
2022-02-19 21:20:11 +03:00
Yotam
47caa91e85
fix(cli): fix and add debug log messages in initialization phase (PR #1362 )
...
* Fix log level settings in the CLI
* Add log messages in initialization phase
2022-02-02 19:04:19 +00:00
Skylot
86582de521
feat: use kotlin intrinsic methods for variables rename ( #1207 )
2022-01-19 17:30:04 +00:00
Skylot
947b621733
feat: add option to use dx/d8 for convert java bytecode ( #1299 )
2021-12-03 15:05:28 +00:00
Skylot
48252c3c3d
feat: add option for code comments levels ( #998 )
2021-10-19 16:47:20 +01:00
Nico Mexis
f681c8963d
fix: use maven-publish for JitPack and other fixes (PR #1242 )
...
* Update dependencies
* Fix spaces in file paths
* Update Gradle for LGTM
* Update spotless
* Fix Jitpack
Co-authored-by: Skylot <skylot@gmail.com >
2021-08-27 19:05:52 +03:00
Skylot
dd29d37154
feat(gui): use FlatLaf for themes support
2021-08-02 18:32:35 +03:00
Skylot
21da3c8602
fix: reword rename flags in cli and gui ( #1178 )
2021-05-25 10:10:16 +01:00
Skylot
8785c33d06
feat: add option to disable methods inline ( #1170 )
2021-05-18 10:39:30 +01:00
Skylot
c95d64909a
feat(cli): add decompilation progress
2021-03-29 14:56:40 +03:00
bagipro
9ef99a2b92
feat: implement Android App Bundle support ( #1129 ) (PR #1131 )
...
* Implement proto parse
* fix code formatting
* fix tests with empty input
* revert not needed code style changes
* Implement parse of resources.pb for AAB
Co-authored-by: bagipro <bugi@MacBook-Pro-2.local >
Co-authored-by: Skylot <skylot@gmail.com >
2021-03-08 21:34:52 +03:00
Skylot
b873c6ae4d
refactor: use interface for CodeWriter
...
Details:
- add simple and annotated code writers to allow
skip code annotations processing in jadx-cli and other places
- add annotated code info to use only than needed
- allow to set provider for codewriter in JadxArgs
- add JadxArgs argument to constructor to allow change output
- add cli option to insert debug line numbers as code comments
(example for previous change)
2021-02-21 17:34:33 +03:00
Skylot
67def6319e
feat(cli): add option to change deobfuscation map file ( #1117 )
...
Signed-off-by: Skylot <skylot@gmail.com >
2021-02-13 14:22:22 +00:00
Skylot
2ca3c65300
fix(deobf): don't rename unresolved or classpath overridden methods
...
Change details:
- use common code for process override methods in deobfuscator (move OverrideMethodVisitor to pre-decompile stage)
- add all public methods to jadx class set to allow search of override base method
- add don't rename flag if override hierarchy have unresolved methods
2020-12-19 18:07:51 +03:00
Jan S
3a6d645ea3
fix(res): do not rename resources names for building res-map.txt (PR #1035 )
...
fix: do not rename resources names for building res-map.txt
allow loading of resources.arsc from android.jar files
res-map.txt bases on resources.arsc from API 3, 4, 7-30 (taken from https://github.com/Sable/android-platforms )
2020-11-30 14:00:58 +03:00
Skylot
fdc87fe296
fix: update class set data to Android API 30
2020-11-22 18:43:49 +00:00
Skylot
d3f5154c19
fix: use text file for store android resource mapping ( #1020 )
...
Signed-off-by: Skylot <skylot@gmail.com >
2020-11-19 10:23:53 +00:00
Skylot
2a2b83a695
fix: do not copy input files as resources to output folder
2020-11-03 18:08:57 +00:00
Skylot
acdaa95854
test(cli): add multiple input test ( #936 )
2020-11-03 17:27:15 +00:00
Skylot
e09e8e5823
chore: resolve some issues reported by sonar and lgtm
2020-10-28 14:16:50 +00:00
Skylot
444ea9ec7e
fix: load .class files
2020-08-10 12:20:42 +01:00
Skylot
558a86739f
fix: bring back smali files support ( #961 )
2020-08-05 19:58:43 +01:00
Skylot
459f12d61f
fix: several improvements for generics and type inference
...
- support 'extends' for generic type variables
- insert cast instructions to help type inference (#956 )
- correct move instructions insertion (to resolve types in PHI)
Signed-off-by: Skylot <skylot@gmail.com >
2020-07-31 18:47:32 +01:00
Skylot
0d69e0ac97
refactor: use own dex parser instead deprecated dx lib
2020-05-21 22:02:20 +01:00
Skylot
c05368d92e
style: prefer use Stream.of method
2020-05-10 15:46:06 +01:00
Yaroslav Yadrov
492a3f6928
feat(deobf): add classname parsing for Kotlin metadata (PR #842 , #758 )
2020-02-02 17:08:29 +03:00
Skylot
531650c9f2
refactor: allow to change temp dir using system property JADX_TMP_DIR
2020-01-13 15:32:32 +03:00
Skylot
bc7a748420
feat(cli): add options for change log level ( #735 )
2019-08-08 13:14:36 +03:00
Skylot
a17f9136dd
refactor: enable class unloading after code generation
2019-08-01 23:29:30 +03:00
skylot
ed385e8cf1
feat: output decompilation results in json format ( #676 )
2019-06-18 16:06:56 +03:00
Jan S
8e0df4c423
fix(gui): printUsage for jadx-gui now shows the new gui only parameter(s) (PR #660 )
2019-05-10 22:42:32 +03:00
Skylot
19c57258fe
fix: improve rename checks and show rename reason ( #584 )
2019-05-10 21:10:04 +03:00
Jan S
fef3e55c55
feat(gui): select a class to open via command-line (PR #658 )
2019-05-10 21:06:54 +03:00
Jan S
6f973ca2af
feat(cli): decompile only a single class (PR #657 )
2019-05-08 19:06:49 +03:00
Skylot
699f7f6716
fix: treat filesystem as case insensitive by default, option added for change
2019-05-05 22:34:34 +03:00
skylot
c7890f2468
style: enforce code style using checkstyle and spotless with eclipse formatter (PR #650 )
2019-04-30 00:04:16 +03:00
Skylot
e7e7b664dd
feat: add option to disable anonymous class inline ( #633 )
2019-04-25 12:37:52 +03:00
Ahmed Ashour
74a72a5ce0
feat: add options to configure "renaming" ( #570 ) (PR #582 )
2019-04-12 18:08:50 +03:00
Ahmed Ashour
b09c7ba6b8
feat(gui): support project ( #526 ) (PR #543 )
2019-03-31 20:20:27 +03:00
Skylot
b446bf275c
refactor: move filesystem case sensitivity value to JadxArgs
2019-03-26 23:12:17 +03:00
Skylot
e026345a45
feat: new implementation for type inference approach and variable declaration
...
BREAKING CHANGE: some parts of jadx was rewritten from scratch
- type inference
- variable declaration
- `finish` block extraction
2019-03-26 16:16:54 +03:00