Skip to content

Commit

Permalink
Update dependency org.jetbrains.kotlin:kotlin-gradle-plugin to v1.9.10 (
Browse files Browse the repository at this point in the history
#104)

* Update dependency org.jetbrains.kotlin:kotlin-gradle-plugin to v1.9.10

* fix Android 14

* update compose compiler

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Yuya Matsuo <[email protected]>
  • Loading branch information
renovate[bot] and niusounds authored Oct 21, 2023
1 parent 7601a25 commit 7d33771
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ repositories {

dependencies {
implementation("com.android.tools.build:gradle:8.1.2")
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.0")
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.10")
}
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[versions]
accompanist = "0.32.0"
compose-bom = "2023.10.01"
composeCompiler = "1.5.1"
composeCompiler = "1.5.3"
coroutines = "1.7.3"
lifecycle = "2.6.2"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,12 @@ class AudioProcessingService : Service() {
audioProcessor?.configure(key, value)
}
}
registerReceiver(receiver, IntentFilter(configureAction))
ContextCompat.registerReceiver(
this,
receiver,
IntentFilter(configureAction),
ContextCompat.RECEIVER_NOT_EXPORTED
)
}

override fun onStartCommand(intent: Intent?, flags: Int, startId: Int): Int {
Expand Down

0 comments on commit 7d33771

Please sign in to comment.