apkToJava 1.0 → 1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +37 -0
- data/lib/apk_to_java.rb +1 -1
- data/lib/apk_to_java/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7fc9d21e5c0c59d24cd8c0d4bc5cf5d2eeb10d01
|
4
|
+
data.tar.gz: 6d91714f5916cf660ddee1c7dc6bd621669ef522
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f7609f29e25d5b2a83f8ee1b5f63d032a55f1d6e5bca70c5d320b44b8c90df4179dacf7468d93cc8a0ca4043e12ece2ac4a02051a2bf57c1398e9e1690426678
|
7
|
+
data.tar.gz: fffac7508eb60be98e8b56db2077027d167b060b30a2bc18a7ed537a1365e76fd6b9f2e61de00ede98232e6e6661fa758f10551faf23048802e4d9264dbb05cd
|
data/README.md
CHANGED
@@ -1,5 +1,42 @@
|
|
1
1
|
# apkToJava
|
2
|
+
[](https://badge.fury.io/rb/apkToJava)
|
3
|
+
|
2
4
|
A ruby gem to view android apk as java code in GUI
|
3
5
|
|
4
6
|
Before starting the process it checks wether the env is setup or not.
|
5
7
|
If not it downloads the required tools and continues with the process.
|
8
|
+
|
9
|
+
## Documentation
|
10
|
+
http://www.singhajit.com/convert-apk-file-to-java-code/
|
11
|
+
|
12
|
+
## Installation
|
13
|
+
|
14
|
+
```gem install apkToJava```
|
15
|
+
|
16
|
+
## Usage
|
17
|
+
|
18
|
+
Below command will install the required tools for ```apkToJava``` to work
|
19
|
+
|
20
|
+
```apkToJava setup```
|
21
|
+
|
22
|
+
Below command will process the apk file and open the code in jadx gui
|
23
|
+
|
24
|
+
```apkToJava path/to/apk/file.apk```
|
25
|
+
|
26
|
+
## Supported Operatiing Systems
|
27
|
+
- Mac
|
28
|
+
- Linux
|
29
|
+
|
30
|
+
## Todo
|
31
|
+
Add Windows support
|
32
|
+
|
33
|
+
## Want to contribute?
|
34
|
+
Fork it ( http://github.com/ajitsing/apkToJava )
|
35
|
+
|
36
|
+
Create your feature branch
|
37
|
+
|
38
|
+
add feature
|
39
|
+
|
40
|
+
Push to the branch
|
41
|
+
|
42
|
+
Create new Pull Request
|
data/lib/apk_to_java.rb
CHANGED
data/lib/apk_to_java/version.rb
CHANGED