Commit 7e9278f9 authored by Skylot's avatar Skylot

don't hardcode maximum Java heap size

parent 9194441c
...@@ -38,7 +38,7 @@ Run **jadx** on itself: ...@@ -38,7 +38,7 @@ Run **jadx** on itself:
### Usage ### Usage
``` ```
jadx[-gui] [options] <input file> (.dex, .apk or .jar) jadx[-gui] [options] <input file> (.dex, .apk, .jar or .class)
options: options:
-d, --output-dir - output directory -d, --output-dir - output directory
-j, --threads-count - processing threads count -j, --threads-count - processing threads count
...@@ -51,6 +51,16 @@ Example: ...@@ -51,6 +51,16 @@ Example:
jadx -d out classes.dex jadx -d out classes.dex
``` ```
### Troubleshooting
##### Out of memory error:
- Reduce processing threads count (`-j` option)
- Increase maximum java heap size:
* command line (example for linux):
`JAVA_OPTS="-Xmx4G" jadx -j 1 some.apk`
* edit 'jadx' script (jadx.bat on Windows) and setup bigger heap size:
`DEFAULT_JVM_OPTS="-Xmx2500M"`
---------------------------------------
*Licensed under the Apache 2.0 License* *Licensed under the Apache 2.0 License*
*Copyright 2014 by Skylot* *Copyright 2014 by Skylot*
...@@ -9,16 +9,6 @@ dependencies { ...@@ -9,16 +9,6 @@ dependencies {
compile 'ch.qos.logback:logback-classic:1.1.2' compile 'ch.qos.logback:logback-classic:1.1.2'
} }
startScripts {
doLast {
// increase default max heap size
String var = 'DEFAULT_JVM_OPTS='
String args = '-Xmx1300M'
unixScript.text = unixScript.text.replace(var + '""', var + '"' + args + '"')
windowsScript.text = windowsScript.text.replace(var, var + args)
}
}
applicationDistribution.with { applicationDistribution.with {
into('') { into('') {
from '../.' from '../.'
......
...@@ -8,16 +8,6 @@ dependencies { ...@@ -8,16 +8,6 @@ dependencies {
compile 'com.fifesoft:rsyntaxtextarea:2.5.0' compile 'com.fifesoft:rsyntaxtextarea:2.5.0'
} }
startScripts {
doLast {
// increase default max heap size
String var = 'DEFAULT_JVM_OPTS='
String args = '-Xmx1300M'
unixScript.text = unixScript.text.replace(var + '""', var + '"' + args + '"')
windowsScript.text = windowsScript.text.replace(var, var + args)
}
}
applicationDistribution.with { applicationDistribution.with {
into('') { into('') {
from '../' from '../'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment