Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2466,13 +2466,13 @@ Support levels:
<details>
<summary><code>UNNotificationTrigger</code></summary>
<ul>
<li>Ignored on Android</li>
<li>Only `nextTriggerDate` is evaluated but not the `repeat` value</li>
</ul>
</details>
</td>
</tr>
<tr>
<td>🟠</td>
<td>🟡</td>
<td>
<details>
<summary><code>UNUserNotificationCenter</code></summary>
Expand All @@ -2481,7 +2481,13 @@ Support levels:
<li><code>func requestAuthorization(options: UNAuthorizationOptions) async throws -> Bool</code></li>
<li><code>var delegate: (any UNUserNotificationCenterDelegate)?</code></li>
<li><code>func add(_ request: UNNotificationRequest) async throws</code></li>
<li>The `add` function ignores all scheduling and repeat options and simply delivers the notification immediately.</li>
<li>The `add` function ignores all repeat options and and simply delivers the notification either immediately or after the next trigger date is reached.</li>
<li><code>func pendingNotificationRequests() async -> [UNNotificationRequest]</code></li>
<li><code>func removePendingNotificationRequests(withIdentifiers identifiers: [String])</code></li>
<li><code>func removeAllPendingNotificationRequests()</code></li>
<li><code>func deliveredNotifications() async -> [UNNotification]</code></li>
<li><code>func removeDeliveredNotifications(withIdentifiers identifiers: [String])</code></li>
<li><code>func removeAllDeliveredNotifications()</code></li>
</ul>
</details>
</td>
Expand Down
5 changes: 4 additions & 1 deletion Sources/SkipUI/Skip/skip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ settings:
- 'version("androidx-activity", "1.11.0")'
- 'version("androidx-lifecycle-process", "2.9.2")'
- 'version("androidx-material3-adaptive", "1.1.0")'
- 'version("androidx-work", "2.11.1")'

# the version for these libraries is derived from the kotlin-bom declared is skip-model/Sources/SkipModel/Skip/skip.yml
- 'library("androidx-core-ktx", "androidx.core", "core-ktx").withoutVersion()'
Expand All @@ -36,6 +37,8 @@ settings:
- 'library("androidx-lifecycle-process", "androidx.lifecycle", "lifecycle-process").versionRef("androidx-lifecycle-process")'
- 'library("androidx-compose-material3-adaptive", "androidx.compose.material3.adaptive", "adaptive").versionRef("androidx-material3-adaptive")'

- 'library("androidx-work-runtime", "androidx.work", "work-runtime-ktx").versionRef("androidx-work")'

- 'library("coil-compose", "io.coil-kt.coil3", "coil-compose").versionRef("coil")'
- 'library("coil-network-okhttp", "io.coil-kt.coil3", "coil-network-okhttp").versionRef("coil")'
- 'library("coil-svg", "io.coil-kt.coil3", "coil-svg").versionRef("coil")'
Expand Down Expand Up @@ -75,6 +78,7 @@ build:
- 'api(libs.androidx.appcompat.resources)'
- 'api(libs.androidx.activity.compose)'
- 'api(libs.androidx.lifecycle.process)'
- 'api(libs.androidx.work.runtime)'
- 'implementation(libs.coil.compose)'
- 'implementation(libs.coil.network.okhttp)'
- 'implementation(libs.coil.svg)'
Expand All @@ -86,4 +90,3 @@ build:
- 'androidTestImplementation(libs.androidx.compose.ui.test.junit4)'
- 'testImplementation(libs.androidx.compose.ui.test.manifest)'
- 'androidTestImplementation(libs.androidx.compose.ui.test.manifest)'

Loading