0
0
Fluttermobile~20 mins

App Store submission in Flutter - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
App Store Submission Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
What is the first step to prepare your Flutter app for App Store submission?
Before submitting your Flutter app to the App Store, what is the very first step you should take?
ACreate an Apple Developer account and enroll in the Apple Developer Program.
BUpload your app directly to the App Store without any preparation.
CPublish your app on Google Play Store first.
DWrite unit tests for your Flutter app.
Attempts:
2 left
💡 Hint
Think about what Apple requires before you can submit any app.
ui_behavior
intermediate
2:00remaining
What happens if your app's Info.plist lacks the NSCameraUsageDescription key?
Your Flutter app uses the camera, but the Info.plist file does not include the NSCameraUsageDescription key. What will happen when the app runs on a real iOS device?
AThe app will show a default system message explaining camera use.
BThe app will access the camera without any warning to the user.
CThe app will crash when trying to access the camera.
DThe app will ignore camera access and continue running.
Attempts:
2 left
💡 Hint
iOS requires permission messages for privacy-sensitive features.
lifecycle
advanced
2:00remaining
When should you increment the build number in your Flutter iOS app before submission?
You are preparing a new version of your Flutter app for App Store submission. When is the correct time to increment the build number in Xcode?
AOnly after the app has been approved by Apple.
BAfter uploading the app to App Store Connect.
CIt is not necessary to increment the build number.
DBefore archiving the app for submission to App Store Connect.
Attempts:
2 left
💡 Hint
Think about what uniquely identifies each app upload.
navigation
advanced
2:00remaining
Which tool do you use to upload your Flutter iOS app archive to App Store Connect?
After building your Flutter app for iOS and creating an archive in Xcode, which tool should you use to upload the app to App Store Connect?
AFlutter CLI command flutter upload.
BXcode Organizer's Upload to App Store feature.
CAndroid Studio's Publish feature.
DDirectly copying the archive to the App Store folder.
Attempts:
2 left
💡 Hint
Think about the official Apple tools for app submission.
📝 Syntax
expert
2:00remaining
What is the correct way to specify the app version and build number in Flutter's pubspec.yaml for iOS submission?
In your Flutter project's pubspec.yaml, how should you write the version field to set app version 2.3.1 and build number 45 for iOS submission?
Flutter
version: ?
A2.3.1+45
B2.3.1-45
C2.3.1.45
Dversion: 2.3.1+45
Attempts:
2 left
💡 Hint
The format is version+buildnumber without extra keys.