File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33Detect whether the application is running in AOT training mode or with an AOT cache.
44
5+ ## Installation
6+
7+ ``` kotlin
8+ dependencies {
9+ implementation(" io.github.kdroidfilter:nucleus.aot-runtime:<version>" )
10+ // Transitive: nucleus.core-runtime is pulled in via `api`
11+ }
12+ ```
13+
514``` kotlin
615import io.github.kdroidfilter.nucleus.aot.runtime.AotRuntime
716import io.github.kdroidfilter.nucleus.aot.runtime.AotRuntimeMode
Original file line number Diff line number Diff line change 22
33Handle custom URL protocol links (` myapp://action?param=value ` ).
44
5+ ## Installation
6+
7+ ``` kotlin
8+ dependencies {
9+ implementation(" io.github.kdroidfilter:nucleus.core-runtime:<version>" )
10+ }
11+ ```
12+
513``` kotlin
614import io.github.kdroidfilter.nucleus.core.runtime.DeepLinkHandler
715```
Original file line number Diff line number Diff line change 22
33Detect at runtime which installer format was used to package your application.
44
5+ ## Installation
6+
7+ ``` kotlin
8+ dependencies {
9+ implementation(" io.github.kdroidfilter:nucleus.core-runtime:<version>" )
10+ }
11+ ```
12+
513``` kotlin
614import io.github.kdroidfilter.nucleus.core.runtime.ExecutableRuntime
715import io.github.kdroidfilter.nucleus.core.runtime.ExecutableType
Original file line number Diff line number Diff line change 22
33Enforce that only one instance of your application runs at a time.
44
5+ ## Installation
6+
7+ ``` kotlin
8+ dependencies {
9+ implementation(" io.github.kdroidfilter:nucleus.core-runtime:<version>" )
10+ }
11+ ```
12+
513``` kotlin
614import io.github.kdroidfilter.nucleus.core.runtime.SingleInstanceManager
715```
You can’t perform that action at this time.
0 commit comments