-
Notifications
You must be signed in to change notification settings - Fork 613
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
iOS icons and launch images plus Fastlane match, gym and pilot
- Loading branch information
1 parent
9c06033
commit 63a5a2b
Showing
39 changed files
with
260 additions
and
24 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 |
---|---|---|
@@ -1,2 +1,7 @@ | ||
app_identifier "org.bartonhammond.snowflake" # The bundle identifier of your app | ||
app_identifier "mobi.snowflake.demo" # The bundle identifier of your app | ||
apple_id "[email protected]" # Your Apple email address | ||
|
||
team_id "BJW5E7FWWV" # Developer Portal Team ID | ||
|
||
# you can even provide different app identifiers, Apple IDs and team names per lane: | ||
# More information: https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Appfile.md |
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,10 @@ | ||
###################### More Options ###################### | ||
# If you want to have even more control, check out the documentation | ||
# https://github.com/fastlane/fastlane/blob/master/deliver/Deliverfile.md | ||
|
||
|
||
###################### Automatically generated ###################### | ||
# Feel free to remove the following line if you use fastlane (which you should) | ||
|
||
app_identifier "mobi.snowflake.demo" # The bundle identifier of your app | ||
username "[email protected]" # your Apple ID user |
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 |
---|---|---|
@@ -1,17 +1,75 @@ | ||
fastlane_version "1.46.1" | ||
# Customise this file, documentation can be found here: | ||
# https://github.com/fastlane/fastlane/tree/master/fastlane/docs | ||
# All available actions: https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Actions.md | ||
# can also be listed using the `fastlane actions` command | ||
|
||
# Change the syntax highlighting to Ruby | ||
# All lines starting with a # are ignored when running `fastlane` | ||
|
||
# If you want to automatically update fastlane if a new version is available: | ||
# update_fastlane | ||
|
||
# This is the minimum version number required. | ||
# Update this, if you use features of a newer version | ||
fastlane_version "1.103.0" | ||
|
||
default_platform :ios | ||
|
||
platform :ios do | ||
|
||
lane :beta do | ||
increment_build_number( | ||
xcodeproj: './ios/snowflake.xcodeproj' | ||
) | ||
before_all do | ||
# ENV["SLACK_URL"] = "https://hooks.slack.com/services/..." | ||
|
||
|
||
end | ||
|
||
desc "Runs all the tests" | ||
lane :test do | ||
scan | ||
end | ||
|
||
desc "Submit a new Beta Build to Apple TestFlight" | ||
desc "This will also make sure the profile is up to date" | ||
lane :beta do | ||
match(type: "appstore") # more information: https://codesigning.guide | ||
gym(scheme: "snowflake", | ||
project: "./ios/snowflake.xcodeproj" | ||
) # Build your app - more options available | ||
pilot | ||
|
||
# sh "your_script.sh" | ||
# You can also use other beta testing services here (run `fastlane actions`) | ||
end | ||
|
||
desc "Deploy a new version to the App Store" | ||
lane :release do | ||
# match(type: "appstore") | ||
# snapshot | ||
gym(scheme: "snowflake") # Build your app - more options available | ||
deliver(force: true) | ||
# frameit | ||
end | ||
|
||
# You can define as many lanes as you want | ||
|
||
after_all do |lane| | ||
# This block is called, only if the executed lane was successful | ||
|
||
# slack( | ||
# message: "Successfully deployed new App Update." | ||
# ) | ||
end | ||
|
||
sh("xctool -project ../ios/snowflake.xcodeproj -scheme snowflake clean archive -archivePath ../build/snowflake") | ||
error do |lane, exception| | ||
# slack( | ||
# message: exception.message, | ||
# success: false | ||
# ) | ||
end | ||
end | ||
|
||
sh("xcodebuild -exportArchive -exportFormat ipa -archivePath ../build/snowflake.xcarchive -exportPath ../build/snowflake.ipa -exportProvisioningProfile 'iOS Team Provisioning Profile: *'") | ||
|
||
sh("cp ../build/snowflake.ipa $BITRISE_DEPLOY_DIR") | ||
end | ||
# More information about multiple platforms in fastlane: https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Platforms.md | ||
# All available actions: https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Actions.md | ||
|
||
end | ||
# fastlane reports which actions are used | ||
# No personal data is recorded. Learn more at https://github.com/fastlane/enhancer |
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,9 @@ | ||
git_url "https://github.com/bartonhammond/snowflake-certs" | ||
|
||
type "development" # The default type, can be: appstore, adhoc or development | ||
|
||
# app_identifier "tools.fastlane.app" | ||
# username "[email protected]" # Your Apple Developer Portal username | ||
|
||
# For all available options run `match --help` | ||
# Remove the # in the beginning of the line to enable the other options |
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,31 @@ | ||
fastlane documentation | ||
================ | ||
# Installation | ||
``` | ||
sudo gem install fastlane | ||
``` | ||
# Available Actions | ||
## iOS | ||
### ios test | ||
``` | ||
fastlane ios test | ||
``` | ||
Runs all the tests | ||
### ios beta | ||
``` | ||
fastlane ios beta | ||
``` | ||
Submit a new Beta Build to Apple TestFlight | ||
|
||
This will also make sure the profile is up to date | ||
### ios release | ||
``` | ||
fastlane ios release | ||
``` | ||
Deploy a new version to the App Store | ||
|
||
---- | ||
|
||
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 [https://fastlane.tools](https://fastlane.tools). | ||
The documentation of fastlane can be found on [GitHub](https://github.com/fastlane/fastlane/tree/master/fastlane). |
Empty file.
Empty file.
Empty file.
Empty file.
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 @@ | ||
Snowflake Demo |
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
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,33 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<testsuites> | ||
<testsuite name="fastlane.lanes"> | ||
|
||
|
||
<testcase classname="fastlane.lanes" name="0: Verifying required fastlane version" time="0.00044"> | ||
|
||
</testcase> | ||
|
||
|
||
<testcase classname="fastlane.lanes" name="1: default_platform" time="0.000177"> | ||
|
||
</testcase> | ||
|
||
|
||
<testcase classname="fastlane.lanes" name="2: match" time="10.584676"> | ||
|
||
</testcase> | ||
|
||
|
||
<testcase classname="fastlane.lanes" name="3: gym" time="65.704893"> | ||
|
||
</testcase> | ||
|
||
|
||
<testcase classname="fastlane.lanes" name="4: pilot" time="75.456354"> | ||
|
||
<failure message="/usr/local/lib/ruby/gems/2.3.0/gems/fastlane-1.104.0/lib/fastlane/actions/actions_helper.rb:33:in `execute_action' /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-1.104.0/lib/fastlane/runner.rb:187:in `block in execute_action' /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-1.104.0/lib/fastlane/runner.rb:186:in `chdir' /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-1.104.0/lib/fastlane/runner.rb:186:in `execute_action' /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-1.104.0/lib/fastlane/runner.rb:112:in `trigger_action_by_name' /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-1.104.0/lib/fastlane/fast_file.rb:140:in `method_missing' Fastfile:37:in `block (2 levels) in parsing_binding' /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-1.104.0/lib/fastlane/lane.rb:33:in `call' /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-1.104.0/lib/fastlane/runner.rb:49:in `block in execute' /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-1.104.0/lib/fastlane/runner.rb:45:in `chdir' /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-1.104.0/lib/fastlane/runner.rb:45:in `execute' /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-1.104.0/lib/fastlane/lane_manager.rb:46:in `cruise_lane' /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-1.104.0/lib/fastlane/command_line_handler.rb:30:in `handle' /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-1.104.0/lib/fastlane/commands_generator.rb:49:in `block (2 levels) in run' /usr/local/lib/ruby/gems/2.3.0/gems/commander-4.4.0/lib/commander/command.rb:178:in `call' /usr/local/lib/ruby/gems/2.3.0/gems/commander-4.4.0/lib/commander/command.rb:153:in `run' /usr/local/lib/ruby/gems/2.3.0/gems/commander-4.4.0/lib/commander/runner.rb:444:in `run_active_command' /usr/local/lib/ruby/gems/2.3.0/gems/fastlane_core-0.52.0/lib/fastlane_core/ui/fastlane_runner.rb:36:in `run!' /usr/local/lib/ruby/gems/2.3.0/gems/commander-4.4.0/lib/commander/delegates.rb:15:in `run!' /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-1.104.0/lib/fastlane/commands_generator.rb:246:in `run' /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-1.104.0/lib/fastlane/commands_generator.rb:20:in `start' /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-1.104.0/lib/fastlane/cli_tools_distributor.rb:58:in `take_off' /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-1.104.0/bin/fastlane:5:in `<top (required)>' /usr/local/bin/fastlane:23:in `load' /usr/local/bin/fastlane:23:in `<main>' Error receiving the newly uploaded binary, please check iTunes Connect" /> | ||
|
||
</testcase> | ||
|
||
</testsuite> | ||
</testsuites> |
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,5 @@ | ||
Put all screenshots you want to use inside the folder of its language (e.g. en-US). | ||
The device type will automatically be recognized using the image resolution. Apple TV screenshots | ||
should be stored in a subdirectory named appleTV with language folders inside of it. | ||
|
||
The screenshots can be named whatever you want, but keep in mind they are sorted alphabetically. |
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
18 changes: 12 additions & 6 deletions
18
ios/snowflake/Images.xcassets/AppIcon.appiconset/Contents.json
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 |
---|---|---|
@@ -1,33 +1,39 @@ | ||
{ | ||
"images" : [ | ||
{ | ||
"idiom" : "iphone", | ||
"size" : "29x29", | ||
"idiom" : "iphone", | ||
"filename" : "[email protected]", | ||
"scale" : "2x" | ||
}, | ||
{ | ||
"idiom" : "iphone", | ||
"size" : "29x29", | ||
"idiom" : "iphone", | ||
"filename" : "[email protected]", | ||
"scale" : "3x" | ||
}, | ||
{ | ||
"idiom" : "iphone", | ||
"size" : "40x40", | ||
"idiom" : "iphone", | ||
"filename" : "[email protected]", | ||
"scale" : "2x" | ||
}, | ||
{ | ||
"idiom" : "iphone", | ||
"size" : "40x40", | ||
"idiom" : "iphone", | ||
"filename" : "[email protected]", | ||
"scale" : "3x" | ||
}, | ||
{ | ||
"idiom" : "iphone", | ||
"size" : "60x60", | ||
"idiom" : "iphone", | ||
"filename" : "[email protected]", | ||
"scale" : "2x" | ||
}, | ||
{ | ||
"idiom" : "iphone", | ||
"size" : "60x60", | ||
"idiom" : "iphone", | ||
"filename" : "[email protected]", | ||
"scale" : "3x" | ||
} | ||
], | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
52 changes: 52 additions & 0 deletions
52
ios/snowflake/Images.xcassets/LaunchImage.launchimage/Contents.json
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,52 @@ | ||
{ | ||
"images": [ | ||
{ | ||
"extent": "full-screen", | ||
"idiom": "iphone", | ||
"filename": "[email protected]", | ||
"minimum-system-version": "7.0", | ||
"orientation": "portrait", | ||
"scale": "2x", | ||
"subtype": "retina4" | ||
}, | ||
{ | ||
"extent": "full-screen", | ||
"idiom": "iphone", | ||
"filename": "[email protected]", | ||
"minimum-system-version": "8.0", | ||
"orientation": "portrait", | ||
"scale": "2x", | ||
"subtype": "667h" | ||
}, | ||
{ | ||
"extent": "full-screen", | ||
"idiom": "iphone", | ||
"filename": "[email protected]", | ||
"minimum-system-version": "8.0", | ||
"orientation": "landscape", | ||
"scale": "3x", | ||
"subtype": "736h" | ||
}, | ||
{ | ||
"extent": "full-screen", | ||
"idiom": "iphone", | ||
"filename": "[email protected]", | ||
"minimum-system-version": "8.0", | ||
"orientation": "portrait", | ||
"scale": "3x", | ||
"subtype": "736h" | ||
}, | ||
{ | ||
"extent": "full-screen", | ||
"idiom": "iphone", | ||
"filename": "[email protected]", | ||
"minimum-system-version": "7.0", | ||
"orientation": "portrait", | ||
"scale": "2x" | ||
} | ||
], | ||
"info": { | ||
"version": 1, | ||
"author": "xcode" | ||
} | ||
} |
Binary file added
BIN
+129 KB
ios/snowflake/Images.xcassets/LaunchImage.launchimage/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+168 KB
ios/snowflake/Images.xcassets/LaunchImage.launchimage/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+324 KB
...snowflake/Images.xcassets/LaunchImage.launchimage/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+341 KB
ios/snowflake/Images.xcassets/LaunchImage.launchimage/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+110 KB
ios/snowflake/Images.xcassets/LaunchImage.launchimage/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.