-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
211 additions
and
15 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#include "Configurations/Project.xcconfig" | ||
|
||
CODE_SIGN_STYLE = Manual | ||
PRODUCT_BUNDLE_IDENTIFIER = moe.nnsnodnb.WebSocketClient | ||
|
||
GENERATE_INFOPLIST_FILE = NO | ||
INFOPLIST_FILE = WebSocketClient/Supporting Files/Info.plist | ||
MARKETING_VERSION = 1.0.0 | ||
CURRENT_PROJECT_VERSION = 1 | ||
|
||
COPY_PHASE_STRIP = YES | ||
STRIP_INSTALLED_PRODUCT = YES |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#include "Configurations/App/App.base.xcconfig" | ||
|
||
ONLY_ACTIVE_ARCH = YES | ||
DEBUG_INFORMATION_FORMAT = dwarf | ||
ENABLE_TESTABILITY = YES | ||
|
||
CODE_SIGN_IDENTITY = Apple Development | ||
PROVISIONING_PROFILE_SPECIFIER = match Development moe.nnsnodnb.WebSocketClient | ||
|
||
GCC_OPTIMIZATION_LEVEL = 0 | ||
SWIFT_OPTIMIZATION_LEVEL = -Onone | ||
SWIFT_ACTIVE_COMPILATION_CONDITIONS = Debug | ||
COPY_PHASE_STRIP = NO | ||
STRIP_INSTALLED_PRODUCT = NO |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#include "Configurations/App/App.base.xcconfig" | ||
|
||
ONLY_ACTIVE_ARCH = NO | ||
DEBUG_INFORMATION_FORMAT = dwarf-with-dsym | ||
ENABLE_TESTABILITY = NO | ||
|
||
CODE_SIGN_IDENTITY = Apple Distribution | ||
PROVISIONING_PROFILE_SPECIFIER = match AppStore moe.nnsnodnb.WebSocketClient | ||
|
||
GCC_OPTIMIZATION_LEVEL = s | ||
SWIFT_OPTIMIZATION_LEVEL = -O | ||
SWIFT_ACTIVE_COMPILATION_CONDITIONS = Release |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
IPHONEOS_DEPLOYMENT_TARGET = 16.0 | ||
TARGETED_DEVICE_FAMILY = 1 | ||
DEVELOPMENT_TEAM = 99649YXF6E |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# app_identifier("[[APP_IDENTIFIER]]") # The bundle identifier of your app | ||
# apple_id("[[APPLE_ID]]") # Your Apple Developer Portal username | ||
|
||
|
||
# For more information about the Appfile, see: | ||
# https://docs.fastlane.tools/advanced/#appfile |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
default_platform(:ios) | ||
|
||
app_identifier = "moe.nnsnodnb.WebSocketClient" | ||
|
||
platform :ios do | ||
desc "Run tests" | ||
lane :test do | ||
scan | ||
end | ||
|
||
# Match | ||
desc "Setup development certificates" | ||
lane :setup_development_certificates do | ||
match( | ||
type: "development", | ||
) | ||
end | ||
|
||
desc "Setup adhoc certificates" | ||
lane :setup_adhoc_certificates do | ||
match( | ||
type: "adhoc", | ||
) | ||
end | ||
|
||
desc "Setup AppStore certificates" | ||
lane :setup_appstore_certificates do | ||
match( | ||
type: "appstore", | ||
) | ||
end | ||
|
||
# Gym | ||
desc "Gym for adhoc" | ||
lane :adhoc do | ||
setup_adhoc_certificates | ||
|
||
gym( | ||
export_method: "ad-hoc", | ||
xcargs: "PROVISIONING_PROFILE_SPECIFIER='match AdHoc #{app_identifier}'", | ||
) | ||
end | ||
end |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
project("WebSocketClient.xcodeproj") | ||
scheme("WebSocketClient") | ||
clean(true) | ||
cloned_source_packages_path(".swiftpm") | ||
disable_package_automatic_updates(true) | ||
output_directory("Products") |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
readonly(true) | ||
app_identifier("moe.nnsnodnb.WebSocketClient") | ||
git_url("git@github.com:nnsnodnb/ios-certificates.git") | ||
git_branch("certs") | ||
shallow_clone(true) | ||
clone_branch_directly(true) |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
fastlane documentation | ||
---- | ||
|
||
# Installation | ||
|
||
Make sure you have the latest version of the Xcode command line tools installed: | ||
|
||
```sh | ||
xcode-select --install | ||
``` | ||
|
||
For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane) | ||
|
||
# Available Actions | ||
|
||
## iOS | ||
|
||
### ios test | ||
|
||
```sh | ||
[bundle exec] fastlane ios test | ||
``` | ||
|
||
Run tests | ||
|
||
### ios setup_development_certificates | ||
|
||
```sh | ||
[bundle exec] fastlane ios setup_development_certificates | ||
``` | ||
|
||
Setup development certificates | ||
|
||
### ios setup_adhoc_certificates | ||
|
||
```sh | ||
[bundle exec] fastlane ios setup_adhoc_certificates | ||
``` | ||
|
||
Setup adhoc certificates | ||
|
||
### ios setup_appstore_certificates | ||
|
||
```sh | ||
[bundle exec] fastlane ios setup_appstore_certificates | ||
``` | ||
|
||
Setup AppStore certificates | ||
|
||
### ios adhoc | ||
|
||
```sh | ||
[bundle exec] fastlane ios adhoc | ||
``` | ||
|
||
Gym for adhoc | ||
|
||
---- | ||
|
||
This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run. | ||
|
||
More information about _fastlane_ can be found on [fastlane.tools](https://fastlane.tools). | ||
|
||
The documentation of _fastlane_ can be found on [docs.fastlane.tools](https://docs.fastlane.tools). |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
project("WebSocketClient.xcodeproj") | ||
scheme("WebSocketClient") | ||
clean(true) | ||
cloned_source_packages_path(".swiftpm") | ||
disable_package_automatic_updates(true) | ||
prelaunch_simulator(true) |