• Stars
    star
    69
  • Rank 436,886 (Top 9 %)
  • Language
    Swift
  • License
    MIT License
  • Created about 8 years ago
  • Updated 7 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Swift library to easily check the current device and some more info about it.

CI Status Version License Platform

Logo

Version 2

The library has been completely rewritten from scratch. This version still offers the Deviice structure, but it has been marked as deprecated and will be removed in future versions. Now, the whole magic is done via the Device class.

Usage

There is documentation for all the classes, methods and properties in the code. To give a general idea, this is how things work.

let device = Device.init()  // This instantiate a `Device` object based on the current device.

print(device.model.marketingName)   // This prints "iPhone 12 Pro" in case it is running on an iPhone 12 Pro

There is also the possibility to get the actual device being simulated on a Mac.

let device = Device.init()

print(device.model.marketingName)           // This will print "Simulator"
print(device.actualModel.marketingName)     // This will print "iPhone 12 Pro" in case you're simulating an iPhone 12 Pro

With the first release, there's no chance to get the type of connectivity of a specific device. This will be probably added later.

Requirements

This library works on iOS 12 or higher.

Installation

Deviice is available through Swift Package Manager and CocoaPods.

Swift Package Manager

You can add this library via Swift Package Manager, using this url https://github.com/andrealufino/Deviice.

CocoaPods

To install it, simply add the following line to your Podfile:

pod "Deviice"

Author

Andrea Mario Lufino, andrealufino.com. Thanks to all the contributors.

License

Deviice is available under the MIT license. See the LICENSE file for more info.