├── Classes ├── .DS_Store ├── NSString+MD5Addition.h ├── NSString+MD5Addition.m ├── UIDevice+IdentifierAddition.h └── UIDevice+IdentifierAddition.m ├── README.markdown ├── UIDeviceAddition.xcodeproj └── project.pbxproj ├── UIDeviceAddition ├── UIDeviceAddition-Info.plist ├── UIDeviceAddition-Prefix.pch ├── UIDeviceAdditionAppDelegate.h ├── UIDeviceAdditionAppDelegate.m ├── UIDeviceAdditionViewController.h ├── UIDeviceAdditionViewController.m ├── en.lproj │ ├── InfoPlist.strings │ ├── MainWindow.xib │ └── UIDeviceAdditionViewController.xib └── main.m └── license /Classes/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gekitz/UIDevice-with-UniqueIdentifier-for-iOS-5/HEAD/Classes/.DS_Store -------------------------------------------------------------------------------- /Classes/NSString+MD5Addition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gekitz/UIDevice-with-UniqueIdentifier-for-iOS-5/HEAD/Classes/NSString+MD5Addition.h -------------------------------------------------------------------------------- /Classes/NSString+MD5Addition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gekitz/UIDevice-with-UniqueIdentifier-for-iOS-5/HEAD/Classes/NSString+MD5Addition.m -------------------------------------------------------------------------------- /Classes/UIDevice+IdentifierAddition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gekitz/UIDevice-with-UniqueIdentifier-for-iOS-5/HEAD/Classes/UIDevice+IdentifierAddition.h -------------------------------------------------------------------------------- /Classes/UIDevice+IdentifierAddition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gekitz/UIDevice-with-UniqueIdentifier-for-iOS-5/HEAD/Classes/UIDevice+IdentifierAddition.m -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gekitz/UIDevice-with-UniqueIdentifier-for-iOS-5/HEAD/README.markdown -------------------------------------------------------------------------------- /UIDeviceAddition.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gekitz/UIDevice-with-UniqueIdentifier-for-iOS-5/HEAD/UIDeviceAddition.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /UIDeviceAddition/UIDeviceAddition-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gekitz/UIDevice-with-UniqueIdentifier-for-iOS-5/HEAD/UIDeviceAddition/UIDeviceAddition-Info.plist -------------------------------------------------------------------------------- /UIDeviceAddition/UIDeviceAddition-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gekitz/UIDevice-with-UniqueIdentifier-for-iOS-5/HEAD/UIDeviceAddition/UIDeviceAddition-Prefix.pch -------------------------------------------------------------------------------- /UIDeviceAddition/UIDeviceAdditionAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gekitz/UIDevice-with-UniqueIdentifier-for-iOS-5/HEAD/UIDeviceAddition/UIDeviceAdditionAppDelegate.h -------------------------------------------------------------------------------- /UIDeviceAddition/UIDeviceAdditionAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gekitz/UIDevice-with-UniqueIdentifier-for-iOS-5/HEAD/UIDeviceAddition/UIDeviceAdditionAppDelegate.m -------------------------------------------------------------------------------- /UIDeviceAddition/UIDeviceAdditionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gekitz/UIDevice-with-UniqueIdentifier-for-iOS-5/HEAD/UIDeviceAddition/UIDeviceAdditionViewController.h -------------------------------------------------------------------------------- /UIDeviceAddition/UIDeviceAdditionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gekitz/UIDevice-with-UniqueIdentifier-for-iOS-5/HEAD/UIDeviceAddition/UIDeviceAdditionViewController.m -------------------------------------------------------------------------------- /UIDeviceAddition/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /UIDeviceAddition/en.lproj/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gekitz/UIDevice-with-UniqueIdentifier-for-iOS-5/HEAD/UIDeviceAddition/en.lproj/MainWindow.xib -------------------------------------------------------------------------------- /UIDeviceAddition/en.lproj/UIDeviceAdditionViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gekitz/UIDevice-with-UniqueIdentifier-for-iOS-5/HEAD/UIDeviceAddition/en.lproj/UIDeviceAdditionViewController.xib -------------------------------------------------------------------------------- /UIDeviceAddition/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gekitz/UIDevice-with-UniqueIdentifier-for-iOS-5/HEAD/UIDeviceAddition/main.m -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gekitz/UIDevice-with-UniqueIdentifier-for-iOS-5/HEAD/license --------------------------------------------------------------------------------