Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix Dialog error #69

Merged
merged 6 commits into from
May 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@
},
"web": {
"favicon": "./assets/favicon.png"
},
"extra": {
"eas": {
"projectId": "fdfcacd5-3fce-44ad-aa51-03c85991cfea"
}
}
}
}
7 changes: 0 additions & 7 deletions controller/createUrl.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
import { Linking } from 'react-native';

// async function createUrl(activeId) {
// console.log(activeId);
// const initialUrl = await Linking.getInitialURL();
// console.log(initialUrl);
// return initialUrl;
// }

async function useInitialURL() {
// Get the deep link used to open the app
const initialUrl = await Linking.getInitialURL();
Expand Down
39 changes: 39 additions & 0 deletions eas.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"cli": {
"version": ">= 3.9.3"
},
"build": {
"development": {
"developmentClient": true,
"distribution": "internal",
"ios": {
"resourceClass": "m-medium"
}
},
"preview": {
"distribution": "internal",
"ios": {
"resourceClass": "m-medium"
},
"android": {
"buildType": "apk"
}
},
"preview2": {
"android": {
"gradleCommand": ":app:assembleRelease"
}
},
"preview3": {
"developmentClient": true
},
"production": {
"ios": {
"resourceClass": "m-medium"
}
}
},
"submit": {
"production": {}
}
}
Loading