-
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.
Setup EAS for replicable builds (#44)
* Install EAS * Setup EAS project ID * Generate eas.json * Disable custom signing in EAS build * Add dev client to preview build * Fix dependencies according to expo install check * Update CLI version * Disable detox plugin by default * Build time error if missing env var * Provide working defaults * Remove unnecessary plugin * Remove unnecessary dependencies * Add missing environment to EAS dev build * Enforce git repo is clean for build --------- Co-authored-by: quan.vo <[email protected]>
- Loading branch information
1 parent
0bb0d15
commit 5d1e65c
Showing
12 changed files
with
1,024 additions
and
139 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
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
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
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,19 @@ | ||
// | ||
// Copyright Inrupt Inc. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// | ||
|
||
export const DEFAULT_LOGIN_URL = | ||
"https://datawallet.inrupt.com/oauth2/authorization/wallet-app"; | ||
export const DEFAULT_WALLET_API = "https://datawallet.inrupt.com"; |
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,34 @@ | ||
{ | ||
"cli": { | ||
"version": "12.3.0", | ||
"appVersionSource": "remote", | ||
"requireCommit": true | ||
}, | ||
"build": { | ||
"development": { | ||
"developmentClient": true, | ||
"distribution": "internal", | ||
"env": { | ||
"EXPO_PUBLIC_LOGIN_URL" : "https://datawallet.dev.inrupt.com/oauth2/authorization/wallet-app", | ||
"EXPO_PUBLIC_WALLET_API": "https://datawallet.dev.inrupt.com" | ||
} | ||
}, | ||
"preview": { | ||
"distribution": "internal", | ||
"env": { | ||
"EXPO_PUBLIC_LOGIN_URL" : "https://datawallet.dev.inrupt.com/oauth2/authorization/wallet-app", | ||
"EXPO_PUBLIC_WALLET_API": "https://datawallet.dev.inrupt.com" | ||
} | ||
}, | ||
"production": { | ||
"autoIncrement": true, | ||
"env": { | ||
"EXPO_PUBLIC_LOGIN_URL" : "https://datawallet.dev.inrupt.com/oauth2/authorization/wallet-app", | ||
"EXPO_PUBLIC_WALLET_API": "https://datawallet.dev.inrupt.com" | ||
} | ||
} | ||
}, | ||
"submit": { | ||
"production": {} | ||
} | ||
} |
Oops, something went wrong.