Skip to content

Instantly share code, notes, and snippets.

@cnxobo
Last active August 26, 2022 07:33
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 cnxobo/e53e0571c5165913e68c8db3600c7d29 to your computer and use it in GitHub Desktop.
Save cnxobo/e53e0571c5165913e68c8db3600c7d29 to your computer and use it in GitHub Desktop.
Info.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleExecutable</key>
<string>universalJavaApplicationStub</string>
<key>CFBundleName</key>
<string>Jadx</string>
<key>CFBundleGetInfoString</key>
<string>Jadx for macOS</string>
<key>CFBundleIconFile</key>
<string>ApplicationStub.icns</string>
<key>CFBundleIdentifier</key>
<string>org.xobo.Jadx</string>
<key>CFBundleShortVersionString</key>
<string>1.0.0</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright 2022 xobo</string>
<key>JavaX</key>
<dict>
<key>MainClass</key>
<string>jadx.gui.JadxGUI</string>
<key>JVMVersion</key>
<string>1.8+</string>
<key>ClassPath</key>
<string>/usr/local/Cellar/jadx/1.4.4/libexec/lib/\\*</string>
<key>WorkingDirectory</key>
<string>$APP_ROOT</string>
<key>Properties</key>
<dict>
<key>apple.laf.useScreenMenuBar</key>
<string>true</string>
</dict>
</dict>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CSResourcesFileMapped</key>
<true/>
<key>LSRequiresCarbon</key>
<true/>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>NSHighResolutionCapable</key>
<true/>
<key>NSAppleEventsUsageDescription</key>
<string>There was an error while launching the application. Please click OK to display a dialog with more information or cancel and view the syslog for details.</string>
<key>CFBundleDocumentTypes</key>
<array>
<dict>
<key>CFBundleTypeExtensions</key>
<array>
<string>class</string>
</array>
<key>CFBundleTypeMIMETypes</key>
<array>
<string>application/java</string>
</array>
<key>CFBundleTypeRole</key>
<string>Viewer</string>
<key>CFBundleTypeName</key>
<string>Class File</string>
<key>LSIsAppleDefaultForType</key>
<true/>
<key>LSTypeIsPackage</key>
<false/>
</dict>
<dict>
<key>CFBundleTypeExtensions</key>
<array>
<string>java</string>
</array>
<key>CFBundleTypeMIMETypes</key>
<array>
<string>text/plain</string>
</array>
<key>CFBundleTypeRole</key>
<string>Viewer</string>
<key>CFBundleTypeName</key>
<string>Java File</string>
<key>LSIsAppleDefaultForType</key>
<false/>
<key>LSTypeIsPackage</key>
<false/>
</dict>
<dict>
<key>CFBundleTypeExtensions</key>
<array>
<string>jar</string>
</array>
<key>CFBundleTypeMIMETypes</key>
<array>
<string>application/java-archive</string>
</array>
<key>CFBundleTypeName</key>
<string>Jar File</string>
<key>CFBundleTypeRole</key>
<string>Viewer</string>
<key>LSIsAppleDefaultForType</key>
<false/>
<key>LSTypeIsPackage</key>
<false/>
</dict>
<dict>
<key>CFBundleTypeExtensions</key>
<array>
<string>war</string>
</array>
<key>CFBundleTypeMIMETypes</key>
<array>
<string>application/java-archive</string>
</array>
<key>CFBundleTypeName</key>
<string>War File</string>
<key>CFBundleTypeRole</key>
<string>Viewer</string>
<key>LSIsAppleDefaultForType</key>
<false/>
<key>LSTypeIsPackage</key>
<false/>
</dict>
<dict>
<key>CFBundleTypeExtensions</key>
<array>
<string>ear</string>
</array>
<key>CFBundleTypeMIMETypes</key>
<array>
<string>application/java-archive</string>
</array>
<key>CFBundleTypeName</key>
<string>Ear File</string>
<key>CFBundleTypeRole</key>
<string>Viewer</string>
<key>LSIsAppleDefaultForType</key>
<false/>
<key>LSTypeIsPackage</key>
<false/>
</dict>
<dict>
<key>CFBundleTypeExtensions</key>
<array>
<string>aar</string>
</array>
<key>CFBundleTypeName</key>
<string>Android archive File</string>
<key>CFBundleTypeRole</key>
<string>Viewer</string>
<key>LSIsAppleDefaultForType</key>
<false/>
<key>LSTypeIsPackage</key>
<false/>
</dict>
<dict>
<key>CFBundleTypeExtensions</key>
<array>
<string>jmod</string>
</array>
<key>CFBundleTypeMIMETypes</key>
<array>
<string>application/java-archive</string>
</array>
<key>CFBundleTypeName</key>
<string>Java module File</string>
<key>CFBundleTypeRole</key>
<string>Viewer</string>
<key>LSIsAppleDefaultForType</key>
<false/>
<key>LSTypeIsPackage</key>
<false/>
</dict>
<dict>
<key>CFBundleTypeExtensions</key>
<array>
<string>zip</string>
</array>
<key>CFBundleTypeMIMETypes</key>
<array>
<string>application/zip</string>
</array>
<key>CFBundleTypeName</key>
<string>Zip File</string>
<key>CFBundleTypeRole</key>
<string>Viewer</string>
<key>LSIsAppleDefaultForType</key>
<false/>
<key>LSTypeIsPackage</key>
<false/>
</dict>
</array>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment