Skip to content

Commit 8f2319d

Browse files
committed
Bump version to 1.1.0 and configure Android SDK 35
- Update version to 1.1.0 in app.json and package.json - Add expo-build-properties plugin with Android SDK 35 configuration - Set compileSdkVersion, targetSdkVersion, and buildToolsVersion to 35 - Remove minSdkVersion from android config (handled by plugin) - Disable edgeToEdgeEnabled for compatibility
1 parent 6825f46 commit 8f2319d

File tree

3 files changed

+66
-10
lines changed

3 files changed

+66
-10
lines changed

app.json

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "Ansari Chat",
44
"owner": "ansari-project",
55
"slug": "ansari-chat",
6-
"version": "1.0.0",
6+
"version": "1.1.0",
77
"scheme": "ansarichat",
88
"userInterfaceStyle": "automatic",
99
"orientation": "portrait",
@@ -42,6 +42,16 @@
4242
{
4343
"initialOrientation": "PORTRAIT"
4444
}
45+
],
46+
[
47+
"expo-build-properties",
48+
{
49+
"android": {
50+
"compileSdkVersion": 35,
51+
"targetSdkVersion": 35,
52+
"buildToolsVersion": "35.0.0"
53+
}
54+
}
4555
]
4656
],
4757
"extra": {
@@ -55,8 +65,7 @@
5565
},
5666
"android": {
5767
"package": "chat.ansari.app",
58-
"minSdkVersion": 35,
59-
"edgeToEdgeEnabled": true
68+
"edgeToEdgeEnabled": false
6069
},
6170
"ios": {
6271
"bundleIdentifier": "chat.ansari.app",
@@ -72,4 +81,4 @@
7281
"url": "https://u.expo.dev/e2f465a7-8007-4e83-91ba-4a9df4c5209a"
7382
}
7483
}
75-
}
84+
}

package-lock.json

Lines changed: 51 additions & 5 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
@@ -1,7 +1,7 @@
11
{
22
"name": "ansari-chat-app",
33
"main": "expo-router/entry",
4-
"version": "0.1.0",
4+
"version": "1.1.0",
55
"private": true,
66
"dependencies": {
77
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
@@ -19,6 +19,7 @@
1919
"expo": "~53.0.23",
2020
"expo-application": "~6.1.5",
2121
"expo-blur": "~14.1.5",
22+
"expo-build-properties": "~0.14.8",
2223
"expo-checkbox": "~4.1.4",
2324
"expo-constants": "~17.1.7",
2425
"expo-dev-client": "~5.2.4",

0 commit comments

Comments
 (0)