chore: batch fix final-review findings on Plan 01
- ROADMAP: mark v0.1 (Foundation & CI) as complete - REQUIREMENTS: move Foundation & CI from Active to Validated (shipped) - AndroidManifest: drop redundant android:label and android:theme on MainActivity - both inherited from <application> - build.gradle.kts: move ui-tooling-preview to debugImplementation (@Preview annotations are dev-only; release APK stays smaller) All foundation verification (lint + test + assembleDebug) still green. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -5,11 +5,11 @@ See full design spec: `docs/superpowers/specs/2026-06-08-calendar-app-design.md`
|
|||||||
## V1 Scope (Variant "B")
|
## V1 Scope (Variant "B")
|
||||||
|
|
||||||
### Validated (shipped)
|
### Validated (shipped)
|
||||||
- (none yet — first milestone in progress)
|
- Foundation & CI infrastructure — v0.1.0 (2026-06-08)
|
||||||
|
|
||||||
### Active (V1)
|
### Active (V1)
|
||||||
|
|
||||||
- [ ] Foundation & CI infrastructure
|
- [x] Foundation & CI infrastructure
|
||||||
- [ ] Data Layer over `CalendarContract`
|
- [ ] Data Layer over `CalendarContract`
|
||||||
- [ ] Permission flow (`READ_CALENDAR`)
|
- [ ] Permission flow (`READ_CALENDAR`)
|
||||||
- [ ] Month view (S1)
|
- [ ] Month view (S1)
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
| Version | Milestone | Status |
|
| Version | Milestone | Status |
|
||||||
|---|---|---|
|
|---|---|---|
|
||||||
| v0.1 | Foundation & CI | in progress |
|
| v0.1 | Foundation & CI | complete |
|
||||||
| v0.2 | Data Layer & Permission Flow | pending |
|
| v0.2 | Data Layer & Permission Flow | pending |
|
||||||
| v0.3 | Month view | pending |
|
| v0.3 | Month view | pending |
|
||||||
| v0.4 | Week view | pending |
|
| v0.4 | Week view | pending |
|
||||||
|
|||||||
@@ -92,7 +92,7 @@ dependencies {
|
|||||||
implementation(platform(libs.androidx.compose.bom))
|
implementation(platform(libs.androidx.compose.bom))
|
||||||
implementation(libs.androidx.ui)
|
implementation(libs.androidx.ui)
|
||||||
implementation(libs.androidx.ui.graphics)
|
implementation(libs.androidx.ui.graphics)
|
||||||
implementation(libs.androidx.ui.tooling.preview)
|
debugImplementation(libs.androidx.ui.tooling.preview)
|
||||||
implementation(libs.androidx.material3)
|
implementation(libs.androidx.material3)
|
||||||
|
|
||||||
implementation(libs.hilt.android)
|
implementation(libs.hilt.android)
|
||||||
|
|||||||
@@ -17,9 +17,7 @@
|
|||||||
tools:targetApi="35">
|
tools:targetApi="35">
|
||||||
<activity
|
<activity
|
||||||
android:name=".MainActivity"
|
android:name=".MainActivity"
|
||||||
android:exported="true"
|
android:exported="true">
|
||||||
android:label="@string/app_name"
|
|
||||||
android:theme="@style/Theme.Calendula">
|
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.intent.action.MAIN" />
|
<action android:name="android.intent.action.MAIN" />
|
||||||
<category android:name="android.intent.category.LAUNCHER" />
|
<category android:name="android.intent.category.LAUNCHER" />
|
||||||
|
|||||||
Reference in New Issue
Block a user