Skip to content

Commit

Permalink
replace api numbers with their names
Browse files Browse the repository at this point in the history
  • Loading branch information
tufanbarisyildirim committed Oct 7, 2023
1 parent e5cde81 commit d482e46
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/ApkParser/AndroidPlatform.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@
define('ANDROID_API_R', 30);
define('ANDROID_API_S', 31);
define('ANDROID_API_S_12L', 32);
define('ANDROID_API_13', 33);
define('ANDROID_API_14', 34);
define('ANDROID_API_TIRAMISU', 33);
define('ANDROID_API_UPSIDE_DOWN_CAKE', 34);


/**
Expand Down Expand Up @@ -95,8 +95,8 @@ class AndroidPlatform
ANDROID_API_R => array('versions' => array('11.0'), 'url' => 'https://developer.android.com/about/versions/11/features'),
ANDROID_API_S => array('versions' => array('12.0'), 'url' => 'https://developer.android.com/about/versions/12/features'),
ANDROID_API_S_12L => array('versions' => array('12.0'), 'url' => 'https://developer.android.com/about/versions/12/features'),
ANDROID_API_13 => array('versions' => array('13.0'), 'url' => 'https://developer.android.com/about/versions/13/features'),
ANDROID_API_14 => array('versions' => array('14.0'), 'url' => 'https://developer.android.com/about/versions/14/features')
ANDROID_API_TIRAMISU => array('versions' => array('13.0'), 'url' => 'https://developer.android.com/about/versions/13/features'),
ANDROID_API_UPSIDE_DOWN_CAKE => array('versions' => array('14.0'), 'url' => 'https://developer.android.com/about/versions/14/features')
);

public $level = null;
Expand Down

0 comments on commit d482e46

Please sign in to comment.