mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2026-05-20 04:12:11 +00:00
6cd63dc0c5
Building release builds is still broken on encrypted linux file systems but that's seems to be not a priority for Google to fix. Upgrade so that developers can avoid suffering from bugs such as preview rendering failure. Signed-off-by: Aayush Gupta <aayushgupta219@gmail.com>
21 lines
736 B
Kotlin
21 lines
736 B
Kotlin
/*
|
|
* SPDX-FileCopyrightText: 2025 NewPipe e.V. <https://newpipe-ev.de>
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
buildscript {
|
|
dependencies {
|
|
// https://developer.android.com/build/releases/agp-9-0-0-release-notes#runtime-dependency-on-kotlin-gradle-plugin-upgrade
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${libs.versions.kotlin.get()}")
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
alias(libs.plugins.android.application) apply false
|
|
alias(libs.plugins.android.legacy.kapt) apply false
|
|
alias(libs.plugins.google.ksp) apply false
|
|
alias(libs.plugins.jetbrains.kotlin.parcelize) apply false
|
|
alias(libs.plugins.jetbrains.kotlinx.serialization) apply false
|
|
alias(libs.plugins.sonarqube) apply false
|
|
}
|