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
name: Create a release pull request | |
# https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs#defining-access-for-the-github_token-scopes | |
permissions: | |
contents: read | |
pull-requests: write | |
jobs: | |
create-release-pr: | |
runs-on: ubuntu-latest |
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
# :emoji: Type: Summary | |
# No more than 50 chars. #### 50 chars is here: # | |
# Remember blank line between title and body. | |
# Body: Explain *what* and *why* (not *how*). Include task ID. | |
# Wrap at 72 chars. ################################## which is here: # | |
# At the end: Include Co-authored-by for all contributors. | |
# Include at least one empty line before it. Format: |
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
<?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>FILEHEADER</key> | |
<string> | |
// ___FILENAME___ | |
// ___TARGETNAME___ | |
// | |
// Created by ___USERNAME___ on ___DATE___ |
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
// | |
// ViewController+ToolBar.swift | |
// KeyboardUpDownSample | |
// | |
// Created by Miharu Naruse on 2020/11/15. | |
// | |
// 参考元サイト | |
// - URL:: https://stackoverflow.com/questions/14148276/toolbar-with-previous-and-next-for-keyboard-inputaccessoryview |
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
// iOS14 | |
// Info.plist | |
<key>NSLocationDefaultAccuracyReduced</key> | |
<true/> |
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
// iOS14 | |
// Reduces accuracy by default | |
var locationManager = CLLocationManager() | |
locationManager.desiredAccuracy = kCLLocationAccuracyReduced |
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
// iOS14 | |
// Asking for full accuracy | |
// Purpose keys in Info.plist | |
<key>NSLocationTemporaryUsageDesriptionDictionary</key> | |
<dict> | |
<key>WantsToNavigate</key> | |
<string>Your precise location will be used to calculate a route and allow you to use turn-by-turn directions.</string> | |
<key>TacoFeature</key> | |
<string>Your precise location will be used to deliver tacos to you.</string> |
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
// iOS14 | |
// Asking for full accuracy | |
// Purpose keys in Info.plist | |
<key>NSLocationTemporaryUsageDesriptionDictionary</key> | |
<dict> | |
<key>WantsToNavigate</key> | |
<string>Your precise location will be used to calculate a route and allow you to use turn-by-turn directions.</string> | |
<key>TacoFeature</key> | |
<string>Your precise location will be used to deliver tacos to you.</string> |
NewerOlder