Add keychain service
This commit is contained in:
13
keychain-kit/Support Files/Config.xcconfig
Normal file
13
keychain-kit/Support Files/Config.xcconfig
Normal file
@@ -0,0 +1,13 @@
|
||||
//
|
||||
// Config.xcconfig
|
||||
// keychain-kit
|
||||
//
|
||||
// Created by Aleksey Zgurskiy on 02.02.2020.
|
||||
// Copyright © 2020 mr.noone. All rights reserved.
|
||||
//
|
||||
|
||||
// Configuration settings file format documentation can be found at:
|
||||
// https://help.apple.com/xcode/#/dev745c5c974
|
||||
|
||||
INFOPLIST_FILE = keychain-kit/Support Files/Info.plist
|
||||
PRODUCT_NAME = KeychainKit // $(TARGET_NAME:c99extidentifier)
|
||||
12
keychain-kit/Support Files/Debug.xcconfig
Normal file
12
keychain-kit/Support Files/Debug.xcconfig
Normal file
@@ -0,0 +1,12 @@
|
||||
//
|
||||
// Debug.xcconfig
|
||||
// keychain-kit
|
||||
//
|
||||
// Created by Aleksey Zgurskiy on 02.02.2020.
|
||||
// Copyright © 2020 mr.noone. All rights reserved.
|
||||
//
|
||||
|
||||
// Configuration settings file format documentation can be found at:
|
||||
// https://help.apple.com/xcode/#/dev745c5c974
|
||||
|
||||
#include "Config.xcconfig"
|
||||
22
keychain-kit/Support Files/Info.plist
Normal file
22
keychain-kit/Support Files/Info.plist
Normal file
@@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>$(DEVELOPMENT_LANGUAGE)</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>$(EXECUTABLE_NAME)</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>$(PRODUCT_NAME)</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>$(MARKETING_VERSION)</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>$(CURRENT_PROJECT_VERSION)</string>
|
||||
</dict>
|
||||
</plist>
|
||||
12
keychain-kit/Support Files/Release.xcconfig
Normal file
12
keychain-kit/Support Files/Release.xcconfig
Normal file
@@ -0,0 +1,12 @@
|
||||
//
|
||||
// Release.xcconfig
|
||||
// keychain-kit
|
||||
//
|
||||
// Created by Aleksey Zgurskiy on 02.02.2020.
|
||||
// Copyright © 2020 mr.noone. All rights reserved.
|
||||
//
|
||||
|
||||
// Configuration settings file format documentation can be found at:
|
||||
// https://help.apple.com/xcode/#/dev745c5c974
|
||||
|
||||
#include "Config.xcconfig"
|
||||
19
keychain-kit/Support Files/keychain_kit.h
Normal file
19
keychain-kit/Support Files/keychain_kit.h
Normal file
@@ -0,0 +1,19 @@
|
||||
//
|
||||
// keychain_kit.h
|
||||
// keychain-kit
|
||||
//
|
||||
// Created by Aleksey Zgurskiy on 02.02.2020.
|
||||
// Copyright © 2020 mr.noone. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
//! Project version number for keychain_kit.
|
||||
FOUNDATION_EXPORT double keychain_kitVersionNumber;
|
||||
|
||||
//! Project version string for keychain_kit.
|
||||
FOUNDATION_EXPORT const unsigned char keychain_kitVersionString[];
|
||||
|
||||
// In this header, you should import all the public headers of your framework using statements like #import <keychain_kit/PublicHeader.h>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user