Skip to content

Commit

Permalink
tidy up
Browse files Browse the repository at this point in the history
  • Loading branch information
tufanbarisyildirim committed Nov 19, 2022
1 parent 83fc8d1 commit 5e82447
Show file tree
Hide file tree
Showing 5 changed files with 631 additions and 623 deletions.
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
PHP = php
COMPOSER = composer
M = $(shell printf "\033[34;1m>>\033[0m")

.PHONY: test
test:
$(info $(M) runing tests...)
$(COMPOSER) tests
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ application name, description, device feature access permission it requires, etc
files contained in the APK file to a given directory.

### Requirements

PHP 8.0+
PHP 7.3+ is in [2.x.x](https://github.com/tufanbarisyildirim/php-apk-parser/tree/v2.x.x) branch
PHP 7.3+ is in [2.x.x](https://github.com/tufanbarisyildirim/php-apk-parser/tree/v2.x.x) branch

### Installation

Expand Down Expand Up @@ -37,7 +38,6 @@ Thanks JetBrains for the free open source license
<img src="https://resources.jetbrains.com/storage/products/company/brand/logos/jb_beam.png" width = "260" align=center alt="Jetbrains"/>
</a>


### License

Apk Parser is [MIT licensed](./LICENSE.md).
4 changes: 2 additions & 2 deletions lib/ApkParser/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ public function __construct(array $config = [])
{
$this->config = array_merge(
[
'tmp_path' => sys_get_temp_dir(),
'jar_path' => __DIR__ . '/Dex/dedexer.jar',
'tmp_path' => sys_get_temp_dir(),
'jar_path' => __DIR__ . '/Dex/dedexer.jar',
'manifest_only' => true
],
$config
Expand Down
Loading

0 comments on commit 5e82447

Please sign in to comment.