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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d9a266815a457f801809d3163b89d7bb2fda3d63
4
- data.tar.gz: 5c54918132eedb04727fa3ed14e99bef7a054e38
3
+ metadata.gz: 7fc9d21e5c0c59d24cd8c0d4bc5cf5d2eeb10d01
4
+ data.tar.gz: 6d91714f5916cf660ddee1c7dc6bd621669ef522
5
5
  SHA512:
6
- metadata.gz: 9af7d94ec4b2153d28247498d8fe967fd96ba264655e41692f88cccff19c1f2c51f8beab856da08149e1682e81ab9ad2b905a0d92237a1cf4168f914aa4d4034
7
- data.tar.gz: 21abd3dde26cfa3f72784f229925dcb89f9f9244270a48710932fd12056557c6f419cf53f375e6ce73c201edc94a2fd8a5e5bc82d8f8288edf627e81c745003d
6
+ metadata.gz: f7609f29e25d5b2a83f8ee1b5f63d032a55f1d6e5bca70c5d320b44b8c90df4179dacf7468d93cc8a0ca4043e12ece2ac4a02051a2bf57c1398e9e1690426678
7
+ data.tar.gz: fffac7508eb60be98e8b56db2077027d167b060b30a2bc18a7ed537a1365e76fd6b9f2e61de00ede98232e6e6661fa758f10551faf23048802e4d9264dbb05cd
data/README.md CHANGED
@@ -1,5 +1,42 @@
1
1
  # apkToJava
2
+ [![Gem Version](https://badge.fury.io/rb/apkToJava.svg)](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
@@ -64,7 +64,7 @@ module ApkToJava
64
64
  end
65
65
 
66
66
  def open_code_in_gui(jar_file)
67
- `#{supported_os.jadx} #{jar_file} &`
67
+ `#{supported_os.jadx} #{jar_file} > /dev/null 2>&1 & disown`
68
68
  end
69
69
 
70
70
  def convert_to_dex(apk)
@@ -1,3 +1,3 @@
1
1
  module ApkToJava
2
- VERSION = "1.0"
2
+ VERSION = "1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: apkToJava
3
3
  version: !ruby/object:Gem::Version
4
- version: '1.0'
4
+ version: '1.1'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ajit Singh