Skip to content

Commit 2e5816d

Browse files
committed
apk setup
1 parent 662d69a commit 2e5816d

File tree

4 files changed

+116
-3
lines changed

4 files changed

+116
-3
lines changed

app.json

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"expo": {
3-
"name": "mobile",
3+
"name": "BookWorm",
44
"slug": "mobile",
55
"version": "1.0.0",
66
"orientation": "portrait",
@@ -15,7 +15,8 @@
1515
"adaptiveIcon": {
1616
"foregroundImage": "./assets/images/adaptive-icon.png",
1717
"backgroundColor": "#ffffff"
18-
}
18+
},
19+
"package": "com.sudodpkg.BookWorm"
1920
},
2021
"web": {
2122
"bundler": "metro",
@@ -36,6 +37,20 @@
3637
],
3738
"experiments": {
3839
"typedRoutes": true
40+
},
41+
"extra": {
42+
"router": {
43+
"origin": false
44+
},
45+
"eas": {
46+
"projectId": "d26cb5e1-f439-4200-a216-0ba5843d0c37"
47+
}
48+
},
49+
"runtimeVersion": {
50+
"policy": "appVersion"
51+
},
52+
"updates": {
53+
"url": "https://u.expo.dev/d26cb5e1-f439-4200-a216-0ba5843d0c37"
3954
}
4055
}
4156
}

eas.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"cli": {
3+
"version": ">= 16.0.1",
4+
"appVersionSource": "remote"
5+
},
6+
"build": {
7+
"development": {
8+
"developmentClient": true,
9+
"distribution": "internal"
10+
},
11+
"preview": {
12+
"distribution": "internal"
13+
},
14+
"production": {
15+
"autoIncrement": true
16+
}
17+
},
18+
"submit": {
19+
"production": {}
20+
}
21+
}

package-lock.json

Lines changed: 76 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@
4343
"react-native-webview": "13.12.5",
4444
"zustand": "^5.0.3",
4545
"expo-image-picker": "~16.0.6",
46-
"expo-file-system": "~18.0.11"
46+
"expo-file-system": "~18.0.11",
47+
"expo-updates": "~0.27.4"
4748
},
4849
"devDependencies": {
4950
"@babel/core": "^7.25.2",

0 commit comments

Comments
 (0)