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
- ALWAYS run `./gradlew detekt` after code changes to check for new lint issues and fix accordingly
163
163
- ALWAYS ask clarifying questions to ensure an optimal plan when encountering functional or technical uncertainties in requests
164
164
- ALWAYS when fixing lint or test failures prefer to do the minimal amount of changes to fix the issues
165
-
- USE single-line commit messages under 50 chars; use template format: `feat: add something new`
165
+
- USE single-line commit messages under 50 chars; use conventional commit messages template format: `feat: add something new`
166
166
- USE `git diff HEAD sourceFilePath` to diff an uncommitted file against the last commit
167
+
- ALWAYS run `git status` to check ALL uncommitted changes after completing any code edits, then provide exactly 3 commit message suggestions covering the ENTIRE uncommitted diff
167
168
- ALWAYS check existing code patterns before implementing new features
168
169
- USE existing extensions and utilities rather than creating new ones
169
-
- ALWAYS consider applying YAGNI (You Aren't Gonna Need It) principle for new code
170
+
- ALWAYS consider applying YAGNI (You Ain't Gonna Need It) principle for new code
Copy file name to clipboardExpand all lines: README.md
+37-37Lines changed: 37 additions & 37 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,9 +17,9 @@ This repository contains a **new native Android app** which is **not ready for p
17
17
18
18
#### 1. Firebase Configuration
19
19
20
-
Download `google-services.json` from the Firebase Console for each build flavor:
21
-
-**Dev/Testnet**: Place in `app/` (default location)
22
-
-**Mainnet**: Place in `app/src/mainnet/google-services.json`
20
+
Download `google-services.json` from the Firebase Console for each of the following build flavor groups,:
21
+
-dev/tnet/mainnetDebug: Place in `app/google-services.json`
22
+
-mainnetRelease: Place in `app/src/mainnetRelease/google-services.json`
23
23
24
24
> **Note**: Each flavor requires its own Firebase project configuration. The mainnet flavor will fail to build without its dedicated `google-services.json` file.
0 commit comments