Skip to content

Commit

Permalink
Fixed slug and android package name (#51)
Browse files Browse the repository at this point in the history
* Add certs, fix slug and android package name

* Change from dev to prod datawallet.inrupt.com

* Remove WRITE_EXTERNAL_STORAGE

Pete said we had decided earlier that we don't need it. Dunno how it got in there.

* lint

I am not a developer 😭

---------

Co-authored-by: Pete Edwards <[email protected]>
  • Loading branch information
KyraAssaad and edwardsph authored Sep 11, 2024
1 parent d003ca7 commit bebe311
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 8 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ npm-debug.*
web-build/
.idea
.vscode/
ios/certs/*
credentials.json

# macOS
.DS_Store
Expand Down
4 changes: 2 additions & 2 deletions app.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ if (process.env.EAS_BUILD === "true") {

const baseConfig: ExpoConfig = {
name: "inrupt-data-wallet",
slug: "inrupt-data-wallet",
slug: "inrupt-data-wallet-frontend",
version: "1.0.0",
orientation: "portrait",
icon: "./assets/images/logo.png",
Expand All @@ -71,7 +71,7 @@ const baseConfig: ExpoConfig = {
foregroundImage: "./assets/images/adaptive-icon.png",
backgroundColor: "#ffffff",
},
package: "com.inrupt.inrupt-data-wallet",
package: "com.inrupt.inrupt_data_wallet",
permissions: ["android.permission.CAMERA"],
blockedPermissions: [
"android.permission.RECORD_AUDIO",
Expand Down
20 changes: 14 additions & 6 deletions eas.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,30 @@
"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"
"EXPO_PUBLIC_LOGIN_URL" : "https://datawallet.inrupt.com/oauth2/authorization/wallet-app",
"EXPO_PUBLIC_WALLET_API": "https://datawallet.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"
"EXPO_PUBLIC_LOGIN_URL" : "https://datawallet.inrupt.com/oauth2/authorization/wallet-app",
"EXPO_PUBLIC_WALLET_API": "https://datawallet.inrupt.com"
}
},
"preview-ios": {
"distribution": "internal",
"env": {
"EXPO_PUBLIC_LOGIN_URL" : "https://datawallet.inrupt.com/oauth2/authorization/wallet-app",
"EXPO_PUBLIC_WALLET_API": "https://datawallet.inrupt.com"
},
"credentialsSource": "local"
},
"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"
"EXPO_PUBLIC_LOGIN_URL" : "https://datawallet.inrupt.com/oauth2/authorization/wallet-app",
"EXPO_PUBLIC_WALLET_API": "https://datawallet.inrupt.com"
}
}
},
Expand Down

0 comments on commit bebe311

Please sign in to comment.