/** * **apktool** - Tool for reverse engineering 3rd party, closed, binary Android apps * * @domain `apktool.org` * @programs `apktool` * @version `2.12.1` (6 versions available) * @versions From newest version to oldest. * * @install `launchpad install apktool.org` * @homepage https://apktool.org/ * @dependencies `openjdk.org^21` * @buildDependencies `curl.se` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.apktoolorg * console.log(pkg.name) // "apktool" * console.log(pkg.description) // "Tool for reverse engineering 3rd party, closed,..." * console.log(pkg.programs) // ["apktool"] * console.log(pkg.versions[0]) // "2.12.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/apktool-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const apktoolorgPackage: { /** * The display name of this package. */ name: 'apktool'; /** * The canonical domain name for this package. */ domain: 'apktool.org'; /** * Brief description of what this package does. */ description: 'Tool for reverse engineering 3rd party, closed, binary Android apps'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/apktool.org/package.yml'; homepageUrl: 'https://apktool.org/'; githubUrl: 'https://github.com/iBotPeaches/Apktool'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install apktool.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +apktool.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install apktool.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['apktool']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['openjdk.org^21']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['curl.se']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.12.1', '2.12.0', '2.11.1', '2.11.0', '2.10.0', '2.9.3']; aliases: readonly [] }; export type ApktoolorgPackage = typeof apktoolorgPackage