Skip to content
Merged
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
1 change: 0 additions & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

import com.skydoves.tranformationlayout.Configuration

@Suppress("DSL_SCOPE_VIOLATION")
plugins {
id(libs.plugins.android.application.get().pluginId)
id(libs.plugins.kotlin.android.get().pluginId)
Expand Down
1 change: 0 additions & 1 deletion baselineprofile/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import com.skydoves.tranformationlayout.Configuration
import com.android.build.api.dsl.ManagedVirtualDevice

@Suppress("DSL_SCOPE_VIOLATION") // TODO: Remove once KTIJ-19369 is fixed
plugins {
alias(libs.plugins.android.test)
alias(libs.plugins.kotlin.android)
Expand Down
1 change: 0 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
// See the License for the specific language governing permissions and
// limitations under the License.

@Suppress("DSL_SCOPE_VIOLATION")
plugins {
alias(libs.plugins.android.application) apply false
alias(libs.plugins.android.library) apply false
Expand Down
24 changes: 12 additions & 12 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
[versions]
agp = "8.7.3"
agp = "8.12.0"
dokka = "2.0.0"
nexusPlugin = "0.30.0"
kotlin = "2.1.0"
kotlinBinaryCompatibility = "0.17.0"
nexusPlugin = "0.34.0"
kotlin = "2.2.10"
kotlinBinaryCompatibility = "0.18.1"
jvmTarget = "11"
androidxMaterial = "1.13.0-alpha09"
constraintLayout = "2.2.0"
androidxMaterial = "1.13.0-rc01"
constraintLayout = "2.2.1"
glide = "4.16.0"
spotless = "6.21.0"
junit = "1.2.0"
espresso-core = "3.5.1"
junit = "1.3.0"
espresso-core = "3.7.0"
uiautomator = "2.3.0"
benchmark-macro-junit4 = "1.2.4"
androidx-baselineprofile = "1.3.3"
benchmark-macro-junit4 = "1.4.0"
androidx-baselineprofile = "1.4.0"
profileinstaller = "1.4.1"
androidxMacroBenchmark = "1.3.3"
androidxTest = "1.6.0"
androidxMacroBenchmark = "1.4.0"
androidxTest = "1.7.0"
baselineProfiles = "1.4.1"
uiAutomator = "2.3.0"

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#Fri Jan 03 23:23:48 KST 2025
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
9 changes: 5 additions & 4 deletions transformationlayout/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

import com.skydoves.tranformationlayout.Configuration

@Suppress("DSL_SCOPE_VIOLATION")
plugins {
id(libs.plugins.android.library.get().pluginId)
id(libs.plugins.kotlin.android.get().pluginId)
Expand Down Expand Up @@ -76,9 +75,11 @@ baselineProfile {
}

tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
kotlinOptions.freeCompilerArgs += listOf(
"-Xexplicit-api=strict"
)
compilerOptions {
freeCompilerArgs.addAll(
"-Xexplicit-api=strict"
)
}
}

dependencies {
Expand Down
Loading