-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from joaomanaia/math-quiz
Maze Guess number (wordle) Guess math formula (wordle) Maze Guess math solution (multi choice) Login bug fixed
- Loading branch information
Showing
133 changed files
with
4,636 additions
and
200 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,53 @@ | ||
# Logging analytics | ||
|
||
## Core logging analytics | ||
|
||
| Event name | Triggered when... | Parameters | | ||
|-------------|------------------------------------|-----------------------------------| | ||
| screen_view | This event signifies a screen view | screen_name | | ||
| create_maze | User generates a new maze | seed<br/>item_size<br/>game_modes | | ||
|
||
### Parameters | ||
|
||
| Parameter name | Description | Type | | ||
|----------------|-----------------------------|--------| | ||
| screen_name | Current screen name | String | | ||
| seed | The seed of the maze | Number | | ||
| item_size | The count of maze questions | Number | | ||
| game_modes | All maze game modes enabled | String | | ||
|
||
## Multi choice logging analytics | ||
|
||
| Event name | Triggered when... | Parameters | | ||
|-------------------------|------------------------|----------------------------------------------------------------------------------------------------| | ||
| multi_choice_game_start | user starts a new game | multi_choice_questions_size<br/>multi_choice_category<br/>multi_choice_difficulty<br/>maze_item_id | | ||
| multi_choice_game_end | user starts a new game | multi_choice_questions_size<br/>multi_choice_correct_answers<br/>maze_item_id | | ||
|
||
### Parameters | ||
|
||
| Parameter name | Description | Type | | ||
|------------------------------|------------------------------|--------| | ||
| multi_choice_questions_size | Questions size | Number | | ||
| multi_choice_correct_answers | Correct answers size | Number | | ||
| multi_choice_category | Category for all questions | String | | ||
| multi_choice_difficulty | Difficulty for all questions | String | | ||
| maze_item_id | Item id from maze game mode | String | | ||
|
||
## Wordle logging analytics | ||
|
||
| Event name | Triggered when... | Parameters | | ||
|-------------------|------------------------|------------------------------------------------------------------------------------------------------------------| | ||
| wordle_game_start | user starts a new game | wordle_word_length<br/>wordle_max_rows<br/>wordle_day (optional) | | ||
| wordle_row_end | user ends the game | wordle_word_length<br/>wordle_max_rows<br/>wordle_last_row<br/>wordle_last_row_correct<br/>wordle_day (optional) | | ||
| Event name | Triggered when... | Parameters | | ||
|-------------------|------------------------|------------------------------------------------------------------------------------------------------------------------| | ||
| wordle_game_start | user starts a new game | wordle_word_length<br/>wordle_max_rows<br/>wordle_day<br/>maze_item_id | | ||
| wordle_row_end | user ends the game | wordle_word_length<br/>wordle_max_rows<br/>wordle_last_row<br/>wordle_last_row_correct<br/>wordle_day<br/>maze_item_id | | ||
|
||
### Parameters | ||
|
||
| Parameter name | Description | Type | | ||
|-------------------------|----------------------------|--------| | ||
| wordle_word_length | Word length | Number | | ||
| wordle_max_rows | Quiz max rows | Number | | ||
| wordle_day | Wordle day mode: word date | String | | ||
| wordle_last_row | Quiz last row position | Number | | ||
| wordle_last_row_correct | is quiz last row correct | String | | ||
| Parameter name | Description | Type | | ||
|-------------------------|-----------------------------|--------| | ||
| wordle_word_length | Word length | Number | | ||
| wordle_max_rows | Quiz max rows | Number | | ||
| wordle_day | Wordle day mode: word date | String | | ||
| wordle_last_row | Quiz last row position | Number | | ||
| wordle_last_row_correct | Is quiz last row correct | String | | ||
| wordle_quiz_type | Type of wordle quiz | String | | ||
| maze_item_id | Item id from maze game mode | String | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<vector android:height="24dp" android:tint="#000000" | ||
android:viewportHeight="24" android:viewportWidth="24" | ||
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<path android:fillColor="@android:color/white" android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM9.5,14.67V9.33c0,-0.79 0.88,-1.27 1.54,-0.84l4.15,2.67c0.61,0.39 0.61,1.29 0,1.68l-4.15,2.67C10.38,15.94 9.5,15.46 9.5,14.67z"/> | ||
</vector> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.