Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sanukin39/UniVersionManager
https://github.com/sanukin39/UniVersionManager
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/sanukin39/UniVersionManager
- Owner: sanukin39
- License: mit
- Created: 2015-10-03T17:08:44.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-10-31T00:46:17.000Z (about 6 years ago)
- Last Synced: 2024-07-14T13:36:37.782Z (6 months ago)
- Language: C#
- Size: 96.7 KB
- Stars: 15
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-unity-open-source-on-github - UniVersionManager - Version manager (iOS / Android)
README
# UniVersionManager
## Overview
Simple Version Getter for Unity, it can be used for iOS, Android and unity editor platform.
It can also get build version.## Usage
To get application version
```cs
UniVersionManager.GetVersion();
```
To compare version
```cs
var newVersion = "1.0.1";
if(UniVersionManager.IsNewVersion(newVersion)){
// Update your application
}
```
To get application build version
```cs
UniVersionManager.GetBuildVersion();
```## Install
Use unitypackage under dist folder.## Licence
[MIT](https://github.com/tcnksm/tool/blob/master/LICENCE)
## Author
[sanukin39](https://github.com/sanukin39)