Skip to content

Commit daf0c28

Browse files
committedMay 14, 2023
Apk Nurse initalize
0 parents  commit daf0c28

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+1625
-0
lines changed
 

‎.gitignore

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
.gradle
2+
.idea
3+
build/
4+
!gradle/wrapper/gradle-wrapper.jar
5+
!**/src/main/**/build/
6+
!**/src/test/**/build/
7+
8+
### IntelliJ IDEA ###
9+
.idea/modules.xml
10+
.idea/jarRepositories.xml
11+
.idea/compiler.xml
12+
.idea/libraries/
13+
*.iws
14+
*.iml
15+
*.ipr
16+
out/
17+
!**/src/main/**/out/
18+
!**/src/test/**/out/
19+
20+
21+
### Eclipse ###
22+
.apt_generated
23+
.classpath
24+
.factorypath
25+
.project
26+
.settings
27+
.springBeans
28+
.sts4-cache
29+
bin/
30+
!**/src/main/**/bin/
31+
!**/src/test/**/bin/
32+
33+
### NetBeans ###
34+
/nbproject/private/
35+
/nbbuild/
36+
/dist/
37+
/nbdist/
38+
/.nb-gradle/
39+
40+
### VS Code ###
41+
.vscode/
42+
43+
### Mac OS ###
44+
.DS_Store

‎README.md

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# ApkNurse
2+
3+
## ApkTool
4+
5+
项目地址:https://ibotpeaches.github.io/Apktool/documentation/
6+
7+
## Dex2Jar
8+
9+
GitHub地址:https://github.com/pxb1988/dex2jar
10+
11+
## Jar文件反编译为Java源文件
12+
13+
### 1、Procyon
14+
15+
一款反响不错的反编译工具,该项目默认使用该工具。
16+
GitHub地址:https://github.com/mstrobel/procyon
17+
18+
### 2、fernflower
19+
20+
fernflower是IDEA自带的反编译工具,需要自行根据源码打包出jar使用。
21+
GitHub地址:https://github.com/fesh0r/fernflower
22+
23+
### 3、其他
24+
25+
#### JD-GUI
26+
27+
可以使用可视化的UI直接打开Jar文件查看
28+
GitHub主页:http://java-decompiler.github.io/
29+
GitHub地址:https://github.com/java-decompiler/jd-gui
30+
31+
#### CFR
32+
33+
这里对CFR没有做太多研究,如有兴趣可以自行查看。
34+

0 commit comments

Comments
 (0)
Please sign in to comment.