Skip to content

Commit

Permalink
upgrade Mockposable
Browse files Browse the repository at this point in the history
  • Loading branch information
frett committed Jul 1, 2024
1 parent 2325f7c commit 2989447
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
3 changes: 3 additions & 0 deletions build-logic/settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ dependencyResolutionManagement {
google()
gradlePluginPortal()
mavenCentral()
maven {
url = uri("https://oss.sonatype.org/content/repositories/snapshots/")
}
}

versionCatalogs {
Expand Down
3 changes: 1 addition & 2 deletions build-logic/src/main/kotlin/AndroidConfiguration.kt
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,7 @@ fun BaseExtension.configureFlavorDimensions(project: Project) {
// context(Project)
fun CommonExtension<*, *, *, *, *, *>.configureCompose(project: Project, enableCircuit: Boolean = false) {
buildFeatures.compose = true
composeOptions.kotlinCompilerExtensionVersion =
project.libs.findVersion("androidx-compose-compiler").get().requiredVersion
project.pluginManager.apply("org.jetbrains.kotlin.plugin.compose")

// add our base compose dependencies
project.dependencies.apply {
Expand Down
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ buildscript {
}

plugins {
alias libs.plugins.compose.compiler apply false
alias libs.plugins.hilt apply false
alias libs.plugins.ksp apply false
}
5 changes: 2 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[versions]
accompanist = "0.34.0"
android-gradle-plugin = "8.5.0"
androidx-compose-compiler = "1.5.14"
androidx-compose-material = "1.6.8"
androidx-compose-ui = "1.6.8"
androidx-core = "1.13.1"
Expand Down Expand Up @@ -183,7 +182,7 @@ lottie = { module = "com.airbnb.android:lottie", version.ref = "lottie" }
lottie-compose = { module = "com.airbnb.android:lottie-compose", version.ref = "lottie" }
materialComponents = "com.google.android.material:material:1.12.0"
mockk = "io.mockk:mockk:1.13.11"
mockposable = 'com.jeppeman.mockposable:mockposable-gradle:0.8'
mockposable = 'com.jeppeman.mockposable:mockposable-gradle:0.9-SNAPSHOT'
okhttp3 = { module = "com.squareup.okhttp3:okhttp", version.ref = "okhttp3" }
okhttp3-mockwebserver = { module = "com.squareup.okhttp3:mockwebserver", version.ref = "okhttp3" }
onesky-gradlePlugin = "co.brainly:plugin:1.6.0"
Expand Down Expand Up @@ -216,7 +215,6 @@ weakdelegate = "com.github.Karumi:WeakDelegate:1.0.1"
youtubePlayer = "com.pierfrancescosoffritti.androidyoutubeplayer:core:12.1.0"

# HACK: dependencies used to trigger renovate upgrades
androidx-compose-compiler = { module = "androidx.compose.compiler:compiler", version.ref = "androidx-compose-compiler" }
ktlint = { module = "com.pinterest.ktlint:ktlint-cli", version.ref = "ktlint" }

[bundles]
Expand All @@ -229,6 +227,7 @@ ktlint-rulesets = ["ktlint-rules-compose"]
test-framework = ["junit", "kotlin-test", "androidx-test-junit", "mockk", "robolectric"]

[plugins]
compose-compiler = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
firebase-appdistribution = { id = "com.google.firebase.appdistribution", version = "5.0.0" }
firebase-crashlytics = { id = "com.google.firebase.crashlytics", version = "3.0.2" }
firebase-perf = { id = "com.google.firebase.firebase-perf", version = "1.4.2" }
Expand Down
6 changes: 6 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ pluginManagement {
google()
gradlePluginPortal()
mavenCentral()
maven {
url = uri("https://oss.sonatype.org/content/repositories/snapshots/")
}
}
}

Expand Down Expand Up @@ -45,6 +48,9 @@ dependencyResolutionManagement {
}
google()
mavenCentral()
maven {
url = uri("https://oss.sonatype.org/content/repositories/snapshots/")
}
}
}

Expand Down

0 comments on commit 2989447

Please sign in to comment.