This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
Object.defineProperty(exports, "__esModule", { value: true }); | |
var config = { | |
APIKEY: 'key', | |
REGION: 'us-west-2', | |
TYPE: 'API_KEY', | |
ENDPOINT: 'endpoint', | |
}; | |
exports.default = config; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cd path/to/ios_project | |
$ xcrun agvtool mvers -terse1 | |
1.4.0 | |
or | |
$ /usr/bin/agvtool mvers -terse1 | |
1.4.0 |
Swift3
DispatchQueue.main.async {
}
DispatchQueue.global(attributes: [.qosBackground]).async {
}
automatorで実行する
xcrun -sdk iphoneos PackageApplication "$1/Products/Applications/Storie.app" -o "$1.ipa"
以下の方法だと、サードパーティのフレームワークを入れると失敗する。
xcodebuild -exportArchive -archivePath (入力 xcarchive) -exportProvisioningProfile StorieDev_iOS_Development -exportPath (ipa 出力ファイルパス)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://www.itmedia.co.jp/pcuser/articles/1606/09/news057.html | |
・審査期間を短縮した。(プロセス自体を改善したらしい) | |
・Appストアの表示に関して広告をやる | |
・月額課金の長期ユーザの分はAppleの取り分を減らす |
素直にIDZSwiftCommonCryptoを使おう
## 必要なこと
1. Security.frameworkを追加
2. bridgin-Header.hに#import <CommonCrypto/CommonCryptor.h> 追加
## ProjectName-Bridging-Header.hの設定方法
ファイルの追加 名前は ProjectName-Bridging-Header.h
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
From http://alisoftware.github.io/swift/pattern-matching/2016/05/16/pattern-matching-4/ | |
Shakyo practice | |
Pattern Matching, Part 4: if case, guard case, for case | |
*/ | |
import XCPlayground |
NewerOlder