-
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
9 changed files
with
74 additions
and
20 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 |
---|---|---|
|
@@ -74,3 +74,4 @@ ios/*.zip | |
artifacts | ||
ios/*.ipa | ||
.flutter-plugins-dependencies | ||
ios/fastlane/report.xml |
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,9 +1,7 @@ | ||
NAME = $(shell yq e '.name' pubspec.yaml) | ||
VERSION = $(shell yq e '.version' pubspec.yaml) | ||
|
||
CERT_NAME := LNCQ7FYZE7 | ||
APPLE_USERNAME := [email protected] | ||
APPLE_PASSWORD := @keychain:AC_PASSWORD | ||
CERT_NAME := Developer ID Application: 0x2A Ltd (LNCQ7FYZE7) | ||
|
||
GOMOBILE_PKG := nimona.io/plugins/flutter | ||
APP_PATH := $(CURDIR) | ||
|
@@ -63,8 +61,8 @@ release-ios: | |
.PHONE: release-ios-verify | ||
release-ios-verify: | ||
@xcrun altool \ | ||
--username "$(APPLE_USERNAME)" \ | ||
--password "$(APPLE_PASSWORD)" \ | ||
--username "$(FASTLANE_USER)" \ | ||
--password "$(FASTLANE_APPLE_APPLICATION_SPECIFIC_PASSWORD)" \ | ||
--notarization-info $(REQ_ID) | ||
|
||
.PHONY: build-macos | ||
|
@@ -92,7 +90,7 @@ build-macos: | |
@xcrun altool \ | ||
--notarize-app \ | ||
--primary-bundle-id "io.nimona.$(NAME)" \ | ||
--username "$(APPLE_USERNAME)" \ | ||
--password "$(APPLE_PASSWORD)" \ | ||
--username "$(FASTLANE_USER)" \ | ||
--password "$(FASTLANE_APPLE_APPLICATION_SPECIFIC_PASSWORD)" \ | ||
--file ./artifacts/$(NAME)-$(VERSION).app.zip | ||
@echo "All done!" |
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 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<installer-gui-script minSpecVersion="1"> | ||
<title>{{.applicationName}}</title> | ||
<background alignment="topleft" file="root/Applications/{{.applicationName}}.app/Contents/MacOS/assets/icon.png"/> | ||
<choices-outline> | ||
<line choice="choiceBase"/> | ||
</choices-outline> | ||
<choice id="choiceBase" title="base"> | ||
<pkg-ref id="{{.organizationName}}.base.pkg"/> | ||
</choice> | ||
<pkg-ref id="{{.organizationName}}.base.pkg" version="{{.version}}" auth="Root">#base.pkg</pkg-ref> | ||
</installer-gui-script> |
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 @@ | ||
<pkg-info format-version="2" identifier="{{.organizationName}}.base.pkg" version="{{.version}}" install-location="/" auth="root"> | ||
<bundle-version> | ||
<bundle id="{{.organizationName}}" CFBundleIdentifier="{{.organizationName}}.{{.packageName}}" path="./Applications/{{.applicationName}}.app" CFBundleVersion="{{.version}}"/> | ||
</bundle-version> | ||
</pkg-info> |
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,8 +1,5 @@ | ||
app_identifier("io.nimona.identity") # The bundle identifier of your app | ||
apple_id("[email protected]") # Your Apple email address | ||
app_identifier("io.nimona.identity") | ||
apple_id("[email protected]") | ||
|
||
itc_team_id("120343054") # App Store Connect Team ID | ||
team_id("LNCQ7FYZE7") # Developer Portal Team ID | ||
|
||
# For more information about the Appfile, see: | ||
# https://docs.fastlane.tools/advanced/#appfile | ||
itc_team_id("120343054") | ||
team_id("LNCQ7FYZE7") |
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