You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`action` can be either `rewrite` (default) or `decompile`. It is recommendable to run `decompile` action (produces Jimple code) before configuring rewriting steps, output of other decompilers might be incompatible e.g. when determining call signatures.
14
16
15
17
If no path to `config.properties` is given on the command line, the file is assumed to be present in the current directory. Its entries determine what code transformations should be performed.
16
18
@@ -21,7 +23,8 @@ The following configuration options are independent of the components enabled:
21
23
*`sdk`: (optional) directory where the Android SDK is installed. If omitted, `ANDROID_HOME` environment variable has to be set.
22
24
*`platformVersion`: (optional) platform version to be loaded in Android SDK. If omitted, will be detected automatically.
23
25
*`input`: path to the input APK file
24
-
*`output`: path of the instrumented APK file to be written
26
+
*`output`: path of the rewritten APK file to be written
27
+
*`decompileDir`: path to write decompiled Jimple code to
25
28
*`keystore`: (optional) path to the key store containing the signing key
26
29
*`keypass`: (optional) password protecting the key store
0 commit comments