-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #132 from eurofurence/refactor/ef28
Update main branch with all changes so far
- Loading branch information
Showing
316 changed files
with
26,815 additions
and
36,058 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
node-linker=hoisted |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,117 @@ | ||
module.exports = { | ||
expo: { | ||
runtimeVersion: { | ||
policy: "appVersion", | ||
}, | ||
name: "Eurofurence", | ||
slug: "ef-app-react-native", | ||
description: "Your one stop shop to the convention!", | ||
owner: "eurofurence", | ||
version: "3.3.0", | ||
orientation: "default", | ||
icon: "./assets/platform/playstore.png", | ||
userInterfaceStyle: "automatic", | ||
scheme: "eurofurence", | ||
splash: { | ||
image: "./assets/platform/playstore.png", | ||
resizeMode: "contain", | ||
backgroundColor: "#035451", | ||
}, | ||
updates: { | ||
fallbackToCacheTimeout: 0, | ||
url: "https://u.expo.dev/a60a3199-98db-4eec-8c66-cda6c424377d", | ||
}, | ||
ios: { | ||
supportsTablet: true, | ||
infoPlist: { | ||
UIBackgroundModes: ["fetch", "remote-notification"], | ||
}, | ||
}, | ||
android: { | ||
package: "org.eurofurence.connavigator", | ||
googleServicesFile: "./assets/platform/google-services.json", | ||
splash: { | ||
resizeMode: "native", | ||
image: "./assets/platform/splash.png", | ||
backgroundColor: "#006459", | ||
}, | ||
adaptiveIcon: { | ||
foregroundImage: "./assets/platform/playstore.png", | ||
backgroundColor: "#006459", | ||
}, | ||
intentFilters: [ | ||
{ | ||
action: "VIEW", | ||
autoVerify: true, | ||
data: [ | ||
{ | ||
scheme: "https", | ||
host: "app.eurofurence.org", | ||
pathPrefix: "/EF27/Web", | ||
}, | ||
], | ||
category: ["BROWSABLE", "DEFAULT"], | ||
}, | ||
{ | ||
action: "VIEW", | ||
autoVerify: true, | ||
data: [ | ||
{ | ||
scheme: "https", | ||
host: "app.eurofurence.org", | ||
path: "/auth/login", | ||
}, | ||
], | ||
category: ["BROWSABLE", "DEFAULT"], | ||
}, | ||
], | ||
permissions: ["INTERNET", "VIBRATE", "WRITE_EXTERNAL_STORAGE"], | ||
blockedPermissions: ["com.google.android.gms.permission.AD_ID"], | ||
}, | ||
web: { | ||
bundler: "metro", | ||
favicon: "./assets/platform/playstore.png", | ||
}, | ||
plugins: [ | ||
// Run sentry plugin only if auth token is given, otherwise the build crashes. | ||
Boolean(global.process.env.SENTRY_AUTH_TOKEN) && [ | ||
"@sentry/react-native/expo", | ||
{ | ||
project: "ef-app_react-native", | ||
organization: "eurofurence", | ||
}, | ||
], | ||
// Import assets statically. | ||
[ | ||
"expo-asset", | ||
{ | ||
assets: ["./assets/static"], | ||
}, | ||
], | ||
// Used to display push notifications. | ||
[ | ||
"expo-notifications", | ||
{ | ||
icon: "./assets/platform/notification.png", | ||
color: "#006459", | ||
}, | ||
], | ||
// Used to render audio. | ||
[ | ||
"expo-av", | ||
{ | ||
microphonePermission: false, | ||
}, | ||
], | ||
"expo-localization", | ||
"expo-build-properties", | ||
"@react-native-firebase/app", | ||
"expo-secure-store", | ||
].filter(Boolean), | ||
extra: { | ||
eas: { | ||
projectId: "a60a3199-98db-4eec-8c66-cda6c424377d", | ||
}, | ||
}, | ||
}, | ||
}; |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File renamed without changes.
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes.
File renamed without changes.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,6 @@ | ||
{ | ||
"$schema": "./node_modules/@react-native-firebase/app/firebase-schema.json", | ||
"react-native": { | ||
"google_analytics_adid_collection_enabled": false | ||
} | ||
} |
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,6 @@ | ||
// metro.config.js | ||
const { getDefaultConfig } = require("@expo/metro-config"); | ||
const defaultConfig = getDefaultConfig(__dirname); | ||
const { getSentryExpoConfig } = require("@sentry/react-native/metro"); | ||
|
||
module.exports = (async () => { | ||
defaultConfig.resolver.sourceExts.push("cjs"); | ||
return defaultConfig; | ||
})(); | ||
const config = getSentryExpoConfig(__dirname); | ||
config.resolver.sourceExts.push("cjs"); | ||
|
||
module.exports = config; |
Oops, something went wrong.