Skip to content

Commit

Permalink
add android Q
Browse files Browse the repository at this point in the history
  • Loading branch information
tufanbarisyildirim committed Jan 27, 2020
1 parent 05df96a commit 76a097c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/ApkParser/AndroidPlatform.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
define('ANDROID_API_OREO', 26);
define('ANDROID_API_OREO_MR1', 27);
define('ANDROID_API_PIE', 28);
define('ANDROID_API_Q', 29);

/**
*
Expand Down Expand Up @@ -83,7 +84,8 @@ class AndroidPlatform
ANDROID_API_NOUGAT_MR1 => array('versions' => array('7.1'), 'url' => 'https://developer.android.com/about/versions/nougat/android-7.1'),
ANDROID_API_OREO => array('versions' => array('8.0'), 'url' => 'https://developer.android.com/about/versions/oreo/android-8.0'),
ANDROID_API_OREO_MR1 => array('versions' => array('8.1'), 'url' => 'https://developer.android.com/about/versions/oreo/android-8.1'),
ANDROID_API_PIE => array('versions' => array('9.0'), 'url' => 'https://developer.android.com/about/versions/pie/android-9.0')
ANDROID_API_PIE => array('versions' => array('9.0'), 'url' => 'https://developer.android.com/about/versions/pie/android-9.0'),
ANDROID_API_Q => array('versions' => array('10.0'), 'url' => 'https://developer.android.com/about/versions/10/features')
);

public $level = null;
Expand Down

0 comments on commit 76a097c

Please sign in to comment.