burakhan / php-apk-info
Android Manifest File Basic Reader
Installs: 44
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 1
Open Issues: 0
pkg:composer/burakhan/php-apk-info
Requires
- php: >= 5.3.0
Requires (Dev)
- phpunit/phpunit: 3.7.*
This package is not auto-updated.
Last update: 2025-12-21 00:27:49 UTC
README
Android application package Information
Requirements
PHP 5.3+ PhpUnit 3.7+
Installation
- Install composer
- Create a composer.json into your project like the following sample:
{
...
"require": {
"burakhan/php-apk-info": "dev-master"
}
}
- Then from your
composer.jsonfolder:php composer.phar updateorcomposer update
Default Configuration
array(
'tmp_path' => sys_get_temp_dir(),
'jar_path' => __DIR__ . '/bin/APKParser.jar',
'lang_code' => 'en'
)
How to use
<?php
require 'vendor/autoload.php';
$configuration = array(
'tmp_path' => '/tmp',
'lang_code' => 'tr'
);
$app = new \ApkInfo\Info(
'your_apk_file',
$configuration
);