AndroidSdkVersionFull
class in
UnityEditor
Suggest a change
Success!
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
Close
Submission failed
For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
Close
Description
Represents an Android SDK version with an optional minor component, for example 36.1.
Static Properties
| Property |
Description |
| AndroidApiLevelAuto | Compile against the highest Android SDK platform installed on the machine. |
Properties
| Property |
Description |
| Major | The major API level, for example 36. |
| Minor | The minor version of the major API level, such as 1 for API level 36.1. This value defaults to 0 when the release has no minor version. |
Constructors
| Constructor |
Description |
| AndroidSdkVersionFull | Creates an Android SDK version from a major API level and an optional minor version. |
Public Methods
| Method |
Description |
| ToString | Formats this Android SDK version as a string. |
Static Methods
| Method |
Description |
| TryParse | Tries to parse an Android SDK version from a string, for example 36 or 36.1. |
Operators
| Operator |
Description |
| operator < | Determines whether the left-hand Android SDK version is lower than the right-hand one. |
| operator <= | Returns whether the left-hand Android SDK version is lower than or equal to the right-hand one. |
| operator > | Returns whether the left-hand Android SDK version is higher than the right-hand one. |
| operator >= | Returns whether the left-hand Android SDK version is higher than or equal to the right-hand one. |