itx-utilities/app-version

There is no license information available for the latest version (v0.9) of this package.

get current android/ios app version

v0.9 2020-09-05 13:39 UTC

This package is not auto-updated.

Last update: 2025-08-04 11:25:31 UTC


README

composer require itx-utilities/app-version

usage

<?php
use \Itx\Utilities\AppVersion ;
use \Itx\Utilities\AppVersion\Exceptions\AppVersionException ;

try
{
    // to get android app latest published version ;
    $android = AppVersion::android("net.tsawq.apps") ;
    // to get ios app latest published version ;
    // accepts both id , or bundleId 
    $ios = AppVersion::ios("1355111")  ;
} catch(\AppVersionException $e) {
    // handle any errors 
}