Skip to content

Instantly share code, notes, and snippets.

@nanashida4
Created October 27, 2014 04:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nanashida4/fa4278ffe6825cf5d46e to your computer and use it in GitHub Desktop.
Save nanashida4/fa4278ffe6825cf5d46e to your computer and use it in GitHub Desktop.
Restrict maximum heap memory size by adding -Xmx256m
<?xml version="1.0" ?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>NSHighResolutionCapable</key>
<true/>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
<string>JavaAppLauncher</string>
<key>CFBundleIconFile</key>
<string>V2C.icns</string>
<key>CFBundleIdentifier</key>
<string>org.monazilla.v2c</string>
<key>CFBundleDisplayName</key>
<string>V2C</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>V2C</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>2.11.4</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>NSHumanReadableCopyright</key>
<string></string>
<key>JVMMainClassName</key>
<string>V2C</string>
<key>JVMOptions</key>
<array>
<string>-Xmx256m</string>
</array>
<key>JVMArguments</key>
<array>
</array>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment