Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ReVanced/revanced-manager
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: cb93071003c171e63b045b847adfdd915617daf4
Choose a base ref
..
head repository: ReVanced/revanced-manager
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d99e5af3844b8440a8ab2d1a31299ca3d390bcbd
Choose a head ref
Showing with 9 additions and 0 deletions.
  1. +9 βˆ’0 android/build.gradle.kts
9 changes: 9 additions & 0 deletions android/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import com.android.build.api.dsl.CommonExtension
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

allprojects {
@@ -26,6 +27,14 @@ project(":screenshot_callback") {
}

subprojects {
afterEvaluate {
extensions.findByName("android")?.let {
it as CommonExtension<*, *, *, *, *, *>
if (it.compileSdk != null && it.compileSdk!! < 31)
it.compileSdk = 34
}
}

layout.buildDirectory = rootProject.layout.buildDirectory.file(name).get().asFile
evaluationDependsOn(":app")
}