File tree Expand file tree Collapse file tree 3 files changed +38
-35
lines changed
Expand file tree Collapse file tree 3 files changed +38
-35
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
55 name : 'dailyfate' ,
66 slug : 'dailyfate' ,
77 version : '1.0.0' ,
8+ extra : {
9+ eas : {
10+ projectId : '7eaf22a0-8a86-4d38-96f4-5c8eb183393b' ,
11+ } ,
12+ } ,
813 orientation : 'portrait' ,
914 icon : './assets/icon.png' ,
1015 userInterfaceStyle : 'light' ,
@@ -15,17 +20,25 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
1520 } ,
1621 assetBundlePatterns : [ '**/*' ] ,
1722 ios : {
23+ ...config . ios ,
1824 supportsTablet : true ,
1925 bundleIdentifier : 'com.dailyfate.frontend' ,
26+ infoPlist : {
27+ ...config . ios ?. infoPlist ,
28+ ITSAppUsesNonExemptEncryption : false ,
29+ } ,
2030 } ,
2131 android : {
32+ ...config . android ,
2233 adaptiveIcon : {
34+ ...( config . android ?. adaptiveIcon ?? { } ) ,
2335 foregroundImage : './assets/adaptive-icon.png' ,
2436 backgroundColor : '#ffffff' ,
2537 } ,
2638 package : 'com.dailyfate.frontend' ,
2739 } ,
2840 web : {
41+ ...config . web ,
2942 favicon : './assets/favicon.png' ,
3043 } ,
3144 scheme : 'frontend' ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11{
22 "cli" : {
3- "version" : " >= 13.2.1 " ,
4- "appVersionSource" : " remote "
3+ "version" : " >= 11.0.0 " ,
4+ "appVersionSource" : " local "
55 },
66 "build" : {
77 "development" : {
88 "developmentClient" : true ,
9- "distribution" : " internal"
9+ "distribution" : " internal" ,
10+ "android" : {
11+ "buildType" : " apk"
12+ },
13+ "ios" : {
14+ "simulator" : true
15+ }
1016 },
1117 "preview" : {
1218 "distribution" : " internal" ,
19+ "android" : {
20+ "buildType" : " apk"
21+ },
1322 "ios" : {
1423 "simulator" : true
1524 }
1625 },
1726 "production" : {
18- "autoIncrement" : true
27+ "distribution" : " store" ,
28+ "android" : {
29+ "buildType" : " app-bundle"
30+ },
31+ "ios" : {
32+ "simulator" : false
33+ }
1934 }
2035 },
2136 "submit" : {
22- "production" : {}
37+ "production" : {
38+ "ios" : {
39+ 40+ "appleTeamId" : " GQ89YG5G9R"
41+ }
42+ }
2343 }
2444}
You can’t perform that action at this time.
0 commit comments