Skip to content

Commit 1b7b14c

Browse files
committed
Merge branch 'iphone-6'
2 parents 5c01007 + b5ef262 commit 1b7b14c

File tree

12 files changed

+43
-30
lines changed

12 files changed

+43
-30
lines changed

Authenticator.xcodeproj/project.pbxproj

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
C99069D1180CBAC900BAEF53 /* OTPScannerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C99069D0180CBAC900BAEF53 /* OTPScannerViewController.m */; };
2020
C99069D4180E07A100BAEF53 /* OTPTokenEntryViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C99069D3180E07A100BAEF53 /* OTPTokenEntryViewController.m */; };
2121
C9ABDACF17DD3CF500A86AB5 /* OTPTokenCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C9ABDACE17DD3CF500A86AB5 /* OTPTokenCell.m */; };
22+
C9BEAE6019C67FD800533385 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = C9BEAE5F19C67FD800533385 /* LaunchScreen.xib */; };
2223
C9C6CCA21842E331000100C2 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = C9C6CCA11842E331000100C2 /* Images.xcassets */; };
2324
C9D6C83F1906BD68004F0E08 /* OTPSegmentedControlCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C9D6C83E1906BD68004F0E08 /* OTPSegmentedControlCell.m */; };
2425
C9D6C8461906CD54004F0E08 /* OTPTextFieldCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C9D6C8451906CD54004F0E08 /* OTPTextFieldCell.m */; };
@@ -71,6 +72,7 @@
7172
C9A4FA1317CF9D3100CD5EDC /* Common.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Common.xcconfig; sourceTree = "<group>"; };
7273
C9ABDACD17DD3CF500A86AB5 /* OTPTokenCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OTPTokenCell.h; sourceTree = "<group>"; };
7374
C9ABDACE17DD3CF500A86AB5 /* OTPTokenCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OTPTokenCell.m; sourceTree = "<group>"; };
75+
C9BEAE5F19C67FD800533385 /* LaunchScreen.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LaunchScreen.xib; sourceTree = "<group>"; };
7476
C9C6CCA11842E331000100C2 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
7577
C9D6C83D1906BD68004F0E08 /* OTPSegmentedControlCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OTPSegmentedControlCell.h; sourceTree = "<group>"; };
7678
C9D6C83E1906BD68004F0E08 /* OTPSegmentedControlCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OTPSegmentedControlCell.m; sourceTree = "<group>"; };
@@ -154,6 +156,7 @@
154156
children = (
155157
C9F75C921843CFFD00B6FA14 /* App Icon */,
156158
C9C6CCA11842E331000100C2 /* Images.xcassets */,
159+
C9BEAE5F19C67FD800533385 /* LaunchScreen.xib */,
157160
C97B68C617D9226D005D1FE0 /* Settings.bundle */,
158161
);
159162
path = Resources;
@@ -354,6 +357,7 @@
354357
isa = PBXResourcesBuildPhase;
355358
buildActionMask = 2147483647;
356359
files = (
360+
C9BEAE6019C67FD800533385 /* LaunchScreen.xib in Resources */,
357361
C9F75C961843D01500B6FA14 /* iTunesArtwork@2x in Resources */,
358362
C9C6CCA21842E331000100C2 /* Images.xcassets in Resources */,
359363
C9F75C951843D01500B6FA14 /* iTunesArtwork in Resources */,
@@ -464,7 +468,6 @@
464468
baseConfigurationReference = 6ECCAC12D40844D7BA4D6B9B /* Pods.xcconfig */;
465469
buildSettings = {
466470
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
467-
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
468471
GCC_PREFIX_HEADER = Authenticator/Authenticator.pch;
469472
INFOPLIST_FILE = "Authenticator/Authenticator-Info.plist";
470473
PRODUCT_NAME = Authenticator;
@@ -476,7 +479,6 @@
476479
baseConfigurationReference = 6ECCAC12D40844D7BA4D6B9B /* Pods.xcconfig */;
477480
buildSettings = {
478481
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
479-
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
480482
GCC_PREFIX_HEADER = Authenticator/Authenticator.pch;
481483
INFOPLIST_FILE = "Authenticator/Authenticator-Info.plist";
482484
PRODUCT_NAME = Authenticator;

Authenticator/Authenticator-Info.plist

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@
3535
<string>1.1.1</string>
3636
<key>LSRequiresIPhoneOS</key>
3737
<true/>
38+
<key>UILaunchStoryboardName</key>
39+
<string>LaunchScreen</string>
3840
<key>UIStatusBarStyle</key>
3941
<string>UIStatusBarStyleLightContent</string>
4042
<key>UISupportedInterfaceOrientations</key>

Authenticator/Resources/Images.xcassets/AppIcon.appiconset/Contents.json

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,38 @@
33
{
44
"size" : "29x29",
55
"idiom" : "iphone",
6-
"filename" : "Icon-29@2x.png",
6+
"filename" : "Icon-58.png",
77
"scale" : "2x"
88
},
9+
{
10+
"size" : "29x29",
11+
"idiom" : "iphone",
12+
"filename" : "Icon-87.png",
13+
"scale" : "3x"
14+
},
915
{
1016
"size" : "40x40",
1117
"idiom" : "iphone",
12-
"filename" : "Icon-40@2x.png",
18+
"filename" : "Icon-80.png",
1319
"scale" : "2x"
1420
},
21+
{
22+
"size" : "40x40",
23+
"idiom" : "iphone",
24+
"filename" : "Icon-120.png",
25+
"scale" : "3x"
26+
},
1527
{
1628
"size" : "60x60",
1729
"idiom" : "iphone",
18-
"filename" : "Icon-60@2x.png",
30+
"filename" : "Icon-120.png",
1931
"scale" : "2x"
32+
},
33+
{
34+
"size" : "60x60",
35+
"idiom" : "iphone",
36+
"filename" : "Icon-180.png",
37+
"scale" : "3x"
2038
}
2139
],
2240
"info" : {
Loading
Loading

Authenticator/Resources/Images.xcassets/LaunchImage.launchimage/Contents.json

Lines changed: 0 additions & 25 deletions
This file was deleted.
Binary file not shown.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2+
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="6245" systemVersion="13E28" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES">
3+
<dependencies>
4+
<deployment defaultVersion="1792" identifier="iOS"/>
5+
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="6238"/>
6+
</dependencies>
7+
<objects>
8+
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
9+
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
10+
<view contentMode="scaleToFill" id="iN0-l3-epB">
11+
<rect key="frame" x="0.0" y="0.0" width="600" height="600"/>
12+
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
13+
<color key="backgroundColor" red="0.13725490196078433" green="0.13725490196078433" blue="0.19607843137254902" alpha="1" colorSpace="calibratedRGB"/>
14+
</view>
15+
</objects>
16+
</document>

0 commit comments

Comments
 (0)