Skip to content

Commit 029228c

Browse files
author
Jaesung
authored
Merge pull request #33 from sendbird/feature/jaesung/bug-fix-color
Fix Bug on Color and Update Build Version
2 parents 70000b3 + dac11ef commit 029228c

File tree

3 files changed

+23
-3
lines changed

3 files changed

+23
-3
lines changed

QuickStart.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -553,7 +553,7 @@
553553
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
554554
CODE_SIGN_ENTITLEMENTS = QuickStart/QuickStart.entitlements;
555555
CODE_SIGN_STYLE = Automatic;
556-
CURRENT_PROJECT_VERSION = 17;
556+
CURRENT_PROJECT_VERSION = 18;
557557
DEVELOPMENT_TEAM = RM4A5PXTUX;
558558
FRAMEWORK_SEARCH_PATHS = (
559559
"$(inherited)",
@@ -581,7 +581,7 @@
581581
CODE_SIGN_ENTITLEMENTS = QuickStart/QuickStart.entitlements;
582582
CODE_SIGN_IDENTITY = "Apple Development";
583583
CODE_SIGN_STYLE = Automatic;
584-
CURRENT_PROJECT_VERSION = 17;
584+
CURRENT_PROJECT_VERSION = 18;
585585
DEVELOPMENT_TEAM = RM4A5PXTUX;
586586
FRAMEWORK_SEARCH_PATHS = (
587587
"$(inherited)",
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"colors" : [
3+
{
4+
"color" : {
5+
"color-space" : "srgb",
6+
"components" : {
7+
"alpha" : "1.000",
8+
"blue" : "0xEF",
9+
"green" : "0x53",
10+
"red" : "0x7B"
11+
}
12+
},
13+
"idiom" : "universal"
14+
}
15+
],
16+
"info" : {
17+
"author" : "xcode",
18+
"version" : 1
19+
}
20+
}

QuickStart/SignIn/SignInWithQRViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class SignInWithQRViewController: UIViewController {
5757
animator.startAnimation()
5858

5959
self.scanButton.setTitleColor(UIColor.QuickStart.lightGray.color, for: .normal)
60-
self.scanButton.backgroundColor = UIColor.QuickStart.lightGray.color
60+
self.scanButton.backgroundColor = #colorLiteral(red: 0.509719789, green: 0.3168306947, blue: 0.9718012214, alpha: 1)
6161
self.scanButton.setTitle("Sign in with QR code", for: .normal)
6262
self.scanButton.isEnabled = true
6363
}

0 commit comments

Comments
 (0)