-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
41 lines (41 loc) · 1.67 KB
/
Copy pathapp.json
File metadata and controls
41 lines (41 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"expo": {
"name": "QuizApp",
"description": "Simple Quiz Application on React Native\nHere's what it does!\n\nIt's a single-page trivia quiz app.\n\nThe app will first start the camera and user will capture the photo. If the camera detects the face, it will show the button to start the quiz otherwise show the error, no face found!\n\nThe app will then pull 10 questions from the Open Trivia Database API\n\nIt will display a \"Start Quiz\" button to the user.\n\nWhen the user clicks this button, it will display the questions, and allow the user to answer them.\n\nWhen the user has answered all the questions, the application will show the user a total score.\n\nIt will also show the amount of time taken to answer the questions.\n\nThere is be a \"Play again\" button that allows the user to play the quiz again.\n\n- Muhammad Ovi",
"slug": "quizapp",
"privacy": "public",
"sdkVersion": "31.0.0",
"platforms": [
"ios",
"android"
],
"version": "0.1.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.muhammadovi.quizapp",
"buildNumber": "0.10.0",
"icon": "./assets/images/icon.png"
},
"android": {
"package": "com.muhammadovi.quizapp",
"versionCode": 25010,
"permissions": [
"CAMERA"
]
},
"githubUrl": "https://github.com/MuhammadOvi/React-Native-Quiz-App"
}
}