Skip to content

Commit 923a379

Browse files
Merge branch 'master' into dependabot/npm_and_yarn/00-Login-Expo/ip-1.1.9
2 parents 5b514f3 + ca7cc53 commit 923a379

File tree

84 files changed

+4160
-16499
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+4160
-16499
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @auth0-samples/dx-sdks-engineer
1+
* @auth0-samples/project-dx-sdks-engineer-codeowner

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,4 @@ buck-out/
6161

6262
# CocoaPods
6363
/ios/Pods/
64-
00-Login/auth0-configuration.js
65-
00-Login-Hooks/auth0-configuration.js
64+
auth0-configuration.js

00-Login-Expo/.expo-shared/assets.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

00-Login-Expo/.gitignore

Lines changed: 23 additions & 65 deletions
Original file line numberDiff line numberDiff line change
@@ -1,79 +1,37 @@
1+
# Learn more https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files
2+
3+
# dependencies
14
node_modules/
5+
6+
# Expo
27
.expo/
38
dist/
4-
npm-debug.*
9+
web-build/
10+
expo-env.d.ts
11+
12+
# Native
13+
.kotlin/
14+
*.orig.*
515
*.jks
616
*.p8
717
*.p12
818
*.key
919
*.mobileprovision
10-
*.orig.*
11-
web-build/
1220

13-
# macOS
14-
.DS_Store
21+
# Metro
22+
.metro-health-check*
1523

16-
auth0-configuration.js
17-
# @generated expo-cli sync-e7dcf75f4e856f7b6f3239b3f3a7dd614ee755a8
18-
# The following patterns were generated by expo-cli
24+
# debug
25+
npm-debug.*
26+
yarn-debug.*
27+
yarn-error.*
1928

20-
# OSX
21-
#
29+
# macOS
2230
.DS_Store
31+
*.pem
2332

24-
# Xcode
25-
#
26-
build/
27-
*.pbxuser
28-
!default.pbxuser
29-
*.mode1v3
30-
!default.mode1v3
31-
*.mode2v3
32-
!default.mode2v3
33-
*.perspectivev3
34-
!default.perspectivev3
35-
xcuserdata
36-
*.xccheckout
37-
*.moved-aside
38-
DerivedData
39-
*.hmap
40-
*.ipa
41-
*.xcuserstate
42-
project.xcworkspace
43-
44-
# Android/IntelliJ
45-
#
46-
build/
47-
.idea
48-
.gradle
49-
local.properties
50-
*.iml
51-
*.hprof
52-
53-
# node.js
54-
#
55-
node_modules/
56-
npm-debug.log
57-
yarn-error.log
58-
59-
# BUCK
60-
buck-out/
61-
\.buckd/
62-
*.keystore
63-
!debug.keystore
64-
65-
# Bundle artifacts
66-
*.jsbundle
67-
68-
# CocoaPods
69-
/ios/Pods/
70-
71-
# Expo
72-
.expo/
73-
web-build/
74-
dist/
75-
76-
ios
77-
android
33+
# local env files
34+
.env*.local
7835

79-
# @end expo-cli
36+
# typescript
37+
*.tsbuildinfo

00-Login-Expo/app.json

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"orientation": "portrait",
77
"icon": "./assets/icon.png",
88
"userInterfaceStyle": "light",
9+
"newArchEnabled": true,
910
"plugins": [
1011
[
1112
"react-native-auth0",
@@ -15,25 +16,20 @@
1516
]
1617
],
1718
"splash": {
18-
"image": "./assets/splash.png",
19+
"image": "./assets/splash-icon.png",
1920
"resizeMode": "contain",
2021
"backgroundColor": "#ffffff"
2122
},
22-
"updates": {
23-
"fallbackToCacheTimeout": 0
24-
},
25-
"assetBundlePatterns": [
26-
"**/*"
27-
],
2823
"ios": {
2924
"supportsTablet": true,
3025
"bundleIdentifier": "com.auth0samples"
3126
},
3227
"android": {
3328
"adaptiveIcon": {
3429
"foregroundImage": "./assets/adaptive-icon.png",
35-
"backgroundColor": "#FFFFFF"
30+
"backgroundColor": "#ffffff"
3631
},
32+
"edgeToEdgeEnabled": true,
3733
"package": "com.auth0samples"
3834
},
3935
"web": {
17.1 KB
Loading

00-Login-Expo/assets/splash.png

-46.2 KB
Binary file not shown.

00-Login-Expo/babel.config.js

Lines changed: 0 additions & 6 deletions
This file was deleted.

00-Login-Expo/metro.config.js

Lines changed: 0 additions & 4 deletions
This file was deleted.

00-Login-Expo/package.json

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,23 @@
11
{
22
"name": "00-login-expo",
33
"version": "1.0.0",
4+
"main": "index.js",
45
"scripts": {
56
"start": "expo start --dev-client",
67
"android": "expo run:android",
78
"ios": "expo run:ios",
89
"web": "expo start --web"
910
},
1011
"dependencies": {
11-
"expo": "~48.0.18",
12-
"expo-splash-screen": "~0.18.2",
13-
"expo-status-bar": "~1.4.0",
14-
"react": "18.2.0",
15-
"react-dom": "18.0.0",
16-
"react-native": "0.71.8",
17-
"react-native-auth0": "^3.0.0",
18-
"react-native-web": "~0.18.7"
12+
"expo": "~53.0.9",
13+
"expo-dev-client": "~5.1.8",
14+
"expo-status-bar": "~2.2.3",
15+
"react": "19.0.0",
16+
"react-native": "0.79.2",
17+
"react-native-auth0": "^5.0.0-beta.1"
1918
},
2019
"devDependencies": {
21-
"@babel/core": "^7.12.9"
20+
"@babel/core": "^7.20.0"
2221
},
2322
"private": true
2423
}

0 commit comments

Comments
 (0)