mirror of
https://github.com/liberatedsystems/Sideband_CE.git
synced 2024-09-03 04:13:27 +02:00
28 lines
564 B
Python
28 lines
564 B
Python
'''
|
|
Module of iOS API for plyer.uniqueid.
|
|
'''
|
|
|
|
from pyobjus import autoclass
|
|
from pyobjus.dylib_manager import load_framework
|
|
from plyer.facades import UniqueID
|
|
|
|
load_framework('/System/Library/Frameworks/UIKit.framework')
|
|
UIDevice = autoclass('UIDevice')
|
|
|
|
|
|
class IOSUniqueID(UniqueID):
|
|
'''
|
|
Implementation of iOS uniqueid API.
|
|
'''
|
|
|
|
def _get_uid(self):
|
|
uuid = UIDevice.currentDevice().identifierForVendor.UUIDString()
|
|
return uuid.UTF8String()
|
|
|
|
|
|
def instance():
|
|
'''
|
|
Instance for facade proxy.
|
|
'''
|
|
return IOSUniqueID()
|