You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
q: "Does RocketSim offer out-of-the App Store distribution?",
76
+
a: "Yes. Get in touch via support@rocketsim.app.",
77
+
},
78
+
{
79
+
q: "Are there non-recurring subscriptions?",
80
+
a: "Yes, you can consider buying Team Licenses at rocketsim.app/team-insights.",
81
+
},
82
+
{
83
+
q: "Can I reimburse my App Store subscription?",
84
+
a: "Yes, RocketSim offers Team Licenses as an alternative at rocketsim.app/team-insights.",
85
+
},
86
+
{
87
+
q: "Do you provide commercial or team licenses?",
88
+
a: "Yes, check out Team Licenses at rocketsim.app/team-insights.",
89
+
},
90
+
{
91
+
q: "Can I buy a lifetime RocketSim license?",
92
+
a: "No, but you can earn a lifetime license through SwiftLee Weekly's referral program. Join the newsletter and follow the instructions.",
93
+
},
94
+
{
95
+
q: "Why is my video not accepted by App Store Connect?",
96
+
a: "Videos are optimized for App Previews following Apple's specifications. Make sure to use a Simulator matching a device from the App Preview specifications.",
97
+
},
98
+
{
99
+
q: "Why wouldn't I just use xcrun simctl?",
100
+
a: "RocketSim uses xcrun simctl under the hood but enhances the output with touches, device bezels, and a visual interface for quicker access.",
101
+
},
102
+
{
103
+
q: "Why does RocketSim need screen recording permissions?",
104
+
a: "RocketSim is sandboxed and needs screen recording permissions to read Simulator window titles, which it uses to determine the currently active Simulator.",
105
+
},
106
+
{
107
+
q: "Where can I report bugs or feature requests?",
108
+
a: "Issues and feature requests are managed on GitHub at github.com/AvdLee/RocketSimApp/issues.",
109
+
},
110
+
{
111
+
q: "How can I get PNG images instead of JPEG?",
112
+
a: "Disable App Store Connect (ASC) Optimization. ASC requires JPEG images without alpha layer.",
113
+
},
114
+
{
115
+
q: "Why are my iPad captures upside-down?",
116
+
a: "RocketSim cannot detect landscape-left or landscape-right and defaults to one rotation. Rotate your Simulator twice and restart the recording.",
117
+
},
118
+
{
119
+
q: "Can I create transparent captures?",
120
+
a: "Yes, disable App Preview Optimized and set your background color to transparent.",
121
+
},
122
+
{
123
+
q: "Network Speed Control isn't working, what can I do?",
124
+
a: "Quit Xcode, all Simulators, and RocketSim, then reopen them. Check System Settings → Privacy & Security for pending permissions. On macOS Sequoia, enable the Network Extension in System Settings → General → Login Items & Extensions.",
125
+
},
126
+
]
127
+
: [];
128
+
129
+
if (isFaqPage&&faqEntries.length>0) {
130
+
schemas.push({
131
+
"@context": "https://schema.org",
132
+
"@type": "FAQPage",
133
+
mainEntity: faqEntries.map((faq) => ({
134
+
"@type": "Question",
135
+
name: faq.q,
136
+
acceptedAnswer: {
137
+
"@type": "Answer",
138
+
text: faq.a,
139
+
},
140
+
})),
141
+
});
142
+
}
8
143
---
9
144
10
145
<Default {...Astro.props}><slot /></Default>
@@ -22,4 +157,14 @@ import PlausibleAnalytics from "@/components/PlausibleAnalytics.astro";
0 commit comments