Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v22.22.0
22
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ The full web flow:

| Field | Type | Description |
| --- | --- | --- |
| `clientId` | `string` | The channel ID the access token was issued for. |
| `channelId` | `string` | The channel ID the access token was issued for. |
| `expiresIn` | `number` | Seconds until the token expires. |
| `scope` | `string` | Space-separated list of scopes granted to the token. |

Expand Down
17 changes: 15 additions & 2 deletions example/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,13 @@ web-build/
expo-env.d.ts

# Native
.kotlin/
*.orig.*
*.jks
*.p8
*.p12
*.key
*.mobileprovision
android
ios

# Metro
.metro-health-check*
Expand All @@ -32,7 +31,21 @@ yarn-error.*
*.pem

# local env files
.env
.env*.local

# typescript
*.tsbuildinfo

app-example

# generated native folders
/ios
/android

# AI
.claude/
.cursorrules

# VSCode
.vscode/
28 changes: 15 additions & 13 deletions example/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,21 @@
"icon": "./assets/images/icon.png",
"scheme": "example",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.xmartlabs.line.example"
"bundleIdentifier": "com.xmartlabs.line.example",
"icon": "./assets/expo.icon"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#ffffff"
"backgroundColor": "#06C755",
"backgroundImage": "./assets/images/android-icon-background.png",
"foregroundImage": "./assets/images/android-icon-foreground.png",
"monochromeImage": "./assets/images/android-icon-monochrome.png"
},
"package": "com.xmartlabs.line.example"
"package": "com.xmartlabs.line.example",
"predictiveBackGestureEnabled": false
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/images/favicon.png"
},
Expand All @@ -39,17 +40,18 @@
[
"expo-splash-screen",
{
"image": "./assets/images/splash-icon.png",
"imageWidth": 200,
"resizeMode": "contain",
"backgroundColor": "#ffffff"
"backgroundColor": "#06C755",
"android": {
"image": "./assets/images/splash-icon.png",
"imageWidth": 200
}
}
],
"expo-web-browser"
],
"experiments": {
"reactCompiler": true,
"typedRoutes": true
"typedRoutes": true,
"reactCompiler": true
}
}
}
3 changes: 3 additions & 0 deletions example/assets/expo.icon/Assets/expo-symbol.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added example/assets/expo.icon/Assets/grid.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
35 changes: 35 additions & 0 deletions example/assets/expo.icon/icon.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"fill": {
"automatic-gradient": "extended-srgb:0.00000,0.47843,1.00000,1.00000"
},
"groups": [
{
"layers": [
{
"image-name": "expo-symbol.svg",
"name": "expo-symbol 2",
"position": {
"scale": 1,
"translation-in-points": [1.1008400065293245e-5, -16.046875]
}
},
{
"image-name": "grid.png",
"name": "grid"
}
],
"shadow": {
"kind": "neutral",
"opacity": 0.5
},
"translucency": {
"enabled": true,
"value": 0.5
}
}
],
"supported-platforms": {
"circles": ["watchOS"],
"squares": "shared"
}
}
Binary file removed example/assets/images/adaptive-icon.png
Binary file not shown.
Binary file added example/assets/images/android-icon-background.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added example/assets/images/android-icon-foreground.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added example/assets/images/android-icon-monochrome.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified example/assets/images/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed example/assets/images/line.png
Binary file not shown.
Binary file removed example/assets/images/partial-react-logo.png
Binary file not shown.
Binary file removed example/assets/images/react-logo.png
Binary file not shown.
Binary file removed example/assets/images/react-logo@2x.png
Binary file not shown.
Binary file removed example/assets/images/react-logo@3x.png
Binary file not shown.
Binary file modified example/assets/images/splash-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading