mirror of
https://github.com/androidx/media.git
synced 2025-04-30 06:46:50 +08:00

According to b/292763081 the build failure `unresolved reference: addLast` in the session-demo is caused by a bug in the Kotlin compiler 1.9.0 to which we depend. Bumping the Kotlin plugin version to 1.9.10 which is the next above 1.9.0 as listed in [1], the build problem is resolved. Further, the Kotlin extension compiler version is set to 1.5.3 to make compose work with Kotlin 1.9.10 (see [2] for the Kotlin/Compose compatibility map). [1] https://kotlinlang.org/docs/releases.html#release-details [2] https://developer.android.com/jetpack/androidx/releases/compose-kotlin PiperOrigin-RevId: 654030537
44 lines
1.4 KiB
Groovy
44 lines
1.4 KiB
Groovy
// Copyright (C) 2016 The Android Open Source Project
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
buildscript {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:8.3.2'
|
|
classpath 'com.google.android.gms:strict-version-matcher-plugin:1.2.4'
|
|
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.10'
|
|
}
|
|
}
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven {
|
|
url 'https://jitpack.io'
|
|
content {
|
|
includeGroup "com.github.philburk"
|
|
}
|
|
}
|
|
}
|
|
if (it.hasProperty('externalBuildDir')) {
|
|
if (!new File(externalBuildDir).isAbsolute()) {
|
|
externalBuildDir = new File(rootDir, externalBuildDir)
|
|
}
|
|
buildDir = "${externalBuildDir}/${project.name}"
|
|
}
|
|
group = 'androidx.media3'
|
|
}
|