Skip to content

Commit 63bc250

Browse files
committed
update app targets
Android needs to target 35 or higher to comply with app store
1 parent 9d556c0 commit 63bc250

3 files changed

Lines changed: 43 additions & 21 deletions

File tree

app.json

Lines changed: 36 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
"icon": "./assets/icon.png",
88
"userInterfaceStyle": "automatic",
99
"scheme": "myapp",
10-
"assetBundlePatterns": ["**/*"],
10+
"assetBundlePatterns": [
11+
"**/*"
12+
],
1113
"ios": {
1214
"supportsTablet": true,
1315
"bundleIdentifier": "com.bwees.reveille-rides",
@@ -16,28 +18,36 @@
1618
"resizeMode": "cover",
1719
"backgroundColor": "#fbffff",
1820
"dark": {
19-
"image": "./assets/splash.png",
20-
"resizeMode": "cover",
21-
"backgroundColor": "#191919"
21+
"image": "./assets/splash.png",
22+
"resizeMode": "cover",
23+
"backgroundColor": "#191919"
2224
}
2325
},
2426
"privacyManifests": {
2527
"NSPrivacyAccessedAPITypes": [
2628
{
2729
"NSPrivacyAccessedAPIType": "NSPrivacyAccessedAPICategorySystemBootTime",
28-
"NSPrivacyAccessedAPITypeReasons": ["35F9.1"]
30+
"NSPrivacyAccessedAPITypeReasons": [
31+
"35F9.1"
32+
]
2933
},
3034
{
3135
"NSPrivacyAccessedAPIType": "NSPrivacyAccessedAPICategoryDiskSpace",
32-
"NSPrivacyAccessedAPITypeReasons": ["85F4.1"]
36+
"NSPrivacyAccessedAPITypeReasons": [
37+
"85F4.1"
38+
]
3339
},
3440
{
3541
"NSPrivacyAccessedAPIType": "NSPrivacyAccessedAPICategoryFileTimestamp",
36-
"NSPrivacyAccessedAPITypeReasons": ["DDA9.1"]
42+
"NSPrivacyAccessedAPITypeReasons": [
43+
"DDA9.1"
44+
]
3745
},
3846
{
3947
"NSPrivacyAccessedAPIType": "NSPrivacyAccessedAPICategoryUserDefaults",
40-
"NSPrivacyAccessedAPITypeReasons": ["CA92.1"]
48+
"NSPrivacyAccessedAPITypeReasons": [
49+
"CA92.1"
50+
]
4151
}
4252
]
4353
},
@@ -52,17 +62,17 @@
5262
},
5363
"config": {
5464
"googleMaps": {
55-
"apiKey": "{{GOOGLE_MAPS_KEY}}"
65+
"apiKey": "{{GOOGLE_MAPS_KEY}}"
5666
}
5767
},
5868
"splash": {
5969
"image": "./assets/splash.png",
6070
"resizeMode": "cover",
6171
"backgroundColor": "#fbffff",
6272
"dark": {
63-
"image": "./assets/splash.png",
64-
"resizeMode": "cover",
65-
"backgroundColor": "#191919"
73+
"image": "./assets/splash.png",
74+
"resizeMode": "cover",
75+
"backgroundColor": "#191919"
6676
}
6777
},
6878
"package": "com.maroonrides.maroonrides"
@@ -72,8 +82,9 @@
7282
"bundler": "metro"
7383
},
7484
"plugins": [
75-
"@config-plugins/detox",
76-
["@bacons/apple-targets",
85+
"@config-plugins/detox",
86+
[
87+
"@bacons/apple-targets",
7788
{
7889
"appleTeamId": "65AMD2STXG"
7990
}
@@ -85,7 +96,17 @@
8596
"locationAlwaysPermission": "Allow location for map display and route planning",
8697
"locationWhenInUsePermission": "Allow location for map display and route planning"
8798
}
88-
]
99+
],
100+
["expo-build-properties", {
101+
"android": {
102+
"compileSdkVersion": 35,
103+
"targetSdkVersion": 35,
104+
"buildToolsVersion": "35.0.0"
105+
},
106+
"ios": {
107+
"deploymentTarget": "13.4"
108+
}
109+
}]
89110
]
90111
}
91112
}

package-lock.json

Lines changed: 5 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
@@ -48,7 +48,8 @@
4848
"react-native-timeline-flatlist": "^0.8.0",
4949
"react-native-web": "~0.19.6",
5050
"zod": "^3.22.4",
51-
"zustand": "^4.4.6"
51+
"zustand": "^4.4.6",
52+
"expo-build-properties": "~0.12.5"
5253
},
5354
"devDependencies": {
5455
"@babel/core": "^7.24.0",

0 commit comments

Comments
 (0)