Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Xcode
.DS_Store
*/build/*
_build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
profile
*.moved-aside
DerivedData
.idea/
*.hmap
*.xccheckout
*.pyc
xcshareddata/

#CocoaPods
Pods
5 changes: 5 additions & 0 deletions KataLogInLogOut.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -414,6 +414,7 @@
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
DEVELOPMENT_TEAM = "";
INFOPLIST_FILE = KataLogInLogOut/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = nalvarez.KataLogInLogOut;
Expand All @@ -426,6 +427,7 @@
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
DEVELOPMENT_TEAM = "";
INFOPLIST_FILE = KataLogInLogOut/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = nalvarez.KataLogInLogOut;
Expand Down Expand Up @@ -507,6 +509,7 @@
4059E1B71F28AF34007C3CF9 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
4059E1B81F28AF34007C3CF9 /* Build configuration list for PBXNativeTarget "KataLogInLogOutTests" */ = {
isa = XCConfigurationList;
Expand All @@ -515,6 +518,7 @@
4059E1BA1F28AF34007C3CF9 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
4059E1BB1F28AF34007C3CF9 /* Build configuration list for PBXNativeTarget "KataLogInLogOutUITests" */ = {
isa = XCConfigurationList;
Expand All @@ -523,6 +527,7 @@
4059E1BD1F28AF34007C3CF9 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
Expand Down
Binary file not shown.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<dict>
<key>SchemeUserState</key>
<dict>
<key>KataLogInLogOut.xcscheme</key>
<key>KataLogInLogOut.xcscheme_^#shared#^_</key>
<dict>
<key>orderHint</key>
<integer>0</integer>
Expand Down
2 changes: 2 additions & 0 deletions KataLogInLogOut/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?




func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
return true
Expand Down