Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 1 addition & 8 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,11 +1,4 @@
buildscript {
dependencies { classpath("org.apache.commons:commons-compress:1.28.0") }
if (BuildPluginsVersion.AGP.substringBefore(".").toInt() < 8) {
// AGP 7.x has troubles with compileSdk 34 due to some R8 shenanigans, so we have to use a newer
// version of R* here
dependencies { classpath("com.android.tools:r8:8.11.18") }
}
}
buildscript { dependencies { classpath("org.apache.commons:commons-compress:1.28.0") } }

plugins {
alias(libs.plugins.kotlin) version BuildPluginsVersion.KOTLIN apply false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,6 @@ abstract class BaseSentryPluginTest(
// withPluginClasspath on the Gradle Runner.
$additionalBuildClasspath
classpath files($pluginClasspath)
if ("$androidGradlePluginVersion".split('\\.')[0].toInteger() < 8) {
// AGP 7.x has troubles with compileSdk 34 due to some R8 shenanigans, so we have to use a newer
// version of R* here
classpath 'com.android.tools:r8:8.11.18'
}
}
}

Expand Down
Loading