CalendulaApp registers the Hilt component graph. MainActivity uses enableEdgeToEdge() and renders a centered placeholder showing app name + tagline via CalendulaTheme. PlaceholderPreview lets the IDE preview the layout. Resolves the pre-existing MissingClass lint error from the manifest reference. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
12 lines
311 B
Kotlin
12 lines
311 B
Kotlin
package de.jeanlucmakiola.calendula
|
|
|
|
import android.app.Application
|
|
import dagger.hilt.android.HiltAndroidApp
|
|
|
|
/**
|
|
* Application entry point. Registered as android:name=".CalendulaApp"
|
|
* in AndroidManifest.xml. Hilt initializes its component graph here.
|
|
*/
|
|
@HiltAndroidApp
|
|
class CalendulaApp : Application()
|