Conversation
- `DebugMockSettingsActivity`에서 `android.intent.action.MAIN` 및 `android.intent.category.LAUNCHER` 인텐트 필터 제거 - `MainActivity`와 런처 아이콘이 중복으로 노출되는 문제 방지 - 디버그 설정 화면 진입 방법(adb 명령어)에 대한 안내 주석 추가 및 코드 정리
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
📌𝘐𝘴𝘴𝘶𝘦𝘴
Closes #396 — chore(app): 디버그 빌드 런처 아이콘 중복 제거 (DebugMockSettingsActivity LAUNCHER 제거)
📎𝘞𝘰𝘳𝘬 𝘋𝘦𝘴𝘤𝘳𝘪𝘱𝘵𝘪𝘰𝘯
app/src/debug/AndroidManifest.xml의DebugMockSettingsActivity에서MAIN+LAUNCHERintent-filter 제거 → 디버그 빌드 런처 아이콘을 1개로android:exported="true"는 유지 → mock 설정 화면은adb shell am start -n com.afternote.afternote_fe/.debug.DebugMockSettingsActivity로 진입📷𝘚𝘤𝘳𝘦𝘦𝘯𝘴𝘩𝘰𝘵
디버그 빌드 한정 — 런처 앱 아이콘이 2개(
.MainActivity+DebugMockSettingsActivity)에서 1개로 줄어듭니다. 릴리스 빌드는 영향 없음. (UI 화면 캡처 무관)💬𝘛𝘰 𝘙𝘦𝘷𝘪𝘦𝘸𝘦𝘳𝘴
adb am start로 진입합니다(주석 명시). 앱 아이콘 진입을 유지해야 한다면 알려주세요../gradlew :app:processDebugMainManifest→ BUILD SUCCESSFUL