Compare commits

...

2 Commits

Author SHA1 Message Date
pierre 4030a05a41 add a log on channel creation 2023-06-08 11:04:06 +02:00
pierre 601d0ed02a wip 2023-06-07 14:51:45 +02:00
3 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -49,7 +49,7 @@ jobs:
"build-tools;$SDK_BUILDTOOLS_VERSION"
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
uses: dtolnay/rust-toolchain@1.69.0
- name: Install rust android targets
run: |
@@ -189,6 +189,7 @@ class ProxyWorker(
@RequiresApi(Build.VERSION_CODES.O)
private fun createChannel() {
Log.d(tag, "creating notification channel")
notificationManager.createNotificationChannel(
NotificationChannel(
channelId,
+1
View File
@@ -14,6 +14,7 @@ crate-type = ["cdylib", "staticlib", "rlib"]
[profile.release]
strip = true
codegen-units = 1
[dependencies]
anyhow = "1.0"