-
Notifications
You must be signed in to change notification settings - Fork 1
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 #23 from tfandkusu/fix_markdown
ドキュメント作成を少し修正
- Loading branch information
Showing
4 changed files
with
18 additions
and
11 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -38,5 +38,7 @@ bin/ | |
### Mac OS ### | ||
.DS_Store | ||
|
||
local.properties | ||
|
||
ga913-android | ||
ga913-ios |
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,3 +1,8 @@ | ||
# 【WIP】DroidKaigi 2024「 データに基づく意思決定を支える、Google Analytics for Firebase のイベント送信」の Analytics イベント定義リポジトリ実装例 | ||
|
||
同一仕様の [iOS アプリ](https://github.com/tfandkusu/ga913-ios)と [Android アプリ](https://github.com/tfandkusu/ga913-android)に対して Analytics イベントを定義したクラスをコード生成するリポジトリです。 | ||
|
||
## イベント仕様書 | ||
|
||
- [画面遷移イベント](https://github.com/tfandkusu/ga913-yaml/blob/main/screens.md) | ||
- [画面内操作イベント](https://github.com/tfandkusu/ga913-yaml/blob/main/actions.md) |
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,21 +1,21 @@ | ||
# 画面内イベント一覧 | ||
# 画面内操作イベント一覧 | ||
|
||
# ランドマーク一覧画面 | ||
|
||
| イベント名 | Analytics イベント名 | パラメータ | コンバージョンイベント | | ||
| 操作内容 | Analytics イベント名 | パラメータ | コンバージョンイベント | | ||
| -- | -- | -- | -- | | ||
| いいねを付けたランドマークのみを表示するスイッチ | LandmarkListFavoritesOnlySwitch | スイッチの ON/OFF favorites_only: Boolean<br> | | | ||
| いいねを付けたランドマークのみを表示するスイッチ | LandmarkListFavoritesOnlySwitch | スイッチの ON/OFF favorites_only: Int<br> | | | ||
|
||
# ランドマーク詳細画面 | ||
|
||
| イベント名 | Analytics イベント名 | パラメータ | コンバージョンイベント | | ||
| 操作内容 | Analytics イベント名 | パラメータ | コンバージョンイベント | | ||
| -- | -- | -- | -- | | ||
| いいねを付ける | LandmarkDetailFavoriteOn | ランドマークの ID id: Long<br>ランドマークの名前 name: String<br> | ○ | | ||
| いいねを解除する | LandmarkDetailFavoriteOff | ランドマークの ID id: Long<br>ランドマークの名前 name: String<br> | | | ||
| いいねを付ける | LandmarkDetailFavoriteOn | ランドマークの ID id: Int<br>ランドマークの名前 name: String<br> | ○ | | ||
| いいねを解除する | LandmarkDetailFavoriteOff | ランドマークの ID id: Int<br>ランドマークの名前 name: String<br> | | | ||
|
||
# 情報画面 | ||
|
||
| イベント名 | Analytics イベント名 | パラメータ | コンバージョンイベント | | ||
| 操作内容 | Analytics イベント名 | パラメータ | コンバージョンイベント | | ||
| -- | -- | -- | -- | | ||
| プライバシーポリシーを表示する | InfoPrivacyPolicy | | | | ||
|
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