Skip to content

Commit 40fb410

Browse files
committed
fix: stabilize ios webview and app store submission
1 parent 54f0698 commit 40fb410

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

mobile/capacitor.config.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,15 @@
22
"appId": "com.monkeycode.mobile",
33
"appName": "MonkeyCode",
44
"webDir": "../frontend/dist",
5+
"ios": {
6+
"contentInset": "always",
7+
"backgroundColor": "#faf9f5"
8+
},
59
"server": {
610
"url": "https://monkeycode-ai.com/console/",
7-
"androidScheme": "https"
11+
"androidScheme": "https",
12+
"allowNavigation": [
13+
"monkeycode-ai.com"
14+
]
815
}
916
}

mobile/ios/App/App/Info.plist

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
<string>$(CURRENT_PROJECT_VERSION)</string>
2323
<key>LSRequiresIPhoneOS</key>
2424
<true/>
25+
<key>ITSAppUsesNonExemptEncryption</key>
26+
<false/>
2527
<key>UILaunchStoryboardName</key>
2628
<string>LaunchScreen</string>
2729
<key>UIMainStoryboardFile</key>

mobile/ios/fastlane/Fastfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,10 @@ platform :ios do
150150
submit_for_review: true,
151151
automatic_release: false,
152152
force: true,
153-
precheck_include_in_app_purchases: false
153+
precheck_include_in_app_purchases: false,
154+
submission_information: {
155+
export_compliance_uses_encryption: false
156+
}
154157
)
155158
end
156159
end

0 commit comments

Comments
 (0)