Skip to content

Commit

Permalink
feat(core): prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
Vacxe committed Jul 7, 2024
1 parent 09ad3c1 commit fd7edfd
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 17 deletions.
27 changes: 15 additions & 12 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,36 +1,39 @@
[versions]
gradle = "8.5"
gradle = "8.8"
jvmVersion = "17"

targetSdk = "34"
compileSdk = "34"
minSdk = "14"
minSdk = "21"

agpVersion = "8.2.1"
kotlinVersion = "1.9.21"
agpVersion = "8.5.0"
kotlinVersion = "2.0.0"

dokkaVersion = "1.9.10"
appcompatVersion = "1.6.1"
appcompatVersion = "1.7.0"
recyclerviewVersion = "1.3.2"
viewPager2Version = "1.0.0"
viewPager2Version = "1.1.0"
swiperefreshlayoutVersion = "1.1.0"
annotationVersion = "1.3.0"
testRunnerVersion = "1.5.2"
testRulesVersion = "1.5.0"
annotationVersion = "1.6.0"
testRunnerVersion = "1.6.1"
testRulesVersion = "1.6.1"

espressoVersion = "3.5.1"
espressoVersion = "3.6.1"

junitVersion = "4.13.2"
junitExtVersion = "1.1.5"
junitExtVersion = "1.2.1"
multidexVersion = "2.0.1"
materialVersion = "1.11.0"
materialVersion = "1.12.0"

detekt = "1.17.1"

guavaVersion = "33.2.1-android"

githubApiVersion = "1.318"

[libraries]
com-android-tools-build-gradle = { group = "com.android.tools.build", name = "gradle", version.ref = "agpVersion" }
guava = { module = "com.google.guava:guava", version.ref = "guavaVersion" }
org-jetbrains-kotlin-kotlinGradlePlugin = { group = "org.jetbrains.kotlin", name = "kotlin-gradle-plugin", version.ref = "kotlinVersion" }

com-google-android-material = { group = "com.google.android.material", name = "material", version.ref = "materialVersion" }
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-all.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 2 additions & 0 deletions kakao/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ dependencies {

implementation(libs.androidx.multidex.multidex)

implementation(libs.guava)

dokkaHtmlPlugin(libs.org.jetbrains.dokka.kotlinAsJavaPlugin)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ import org.hamcrest.Matchers
* @param T Type of your custom view. Needs to be defined to enable invoke() and perform() for descendants
*/
@KakaoDslMarker
open class KBaseView<T> : KDSLView<T>, BaseActions, BaseAssertions, Interceptable<ViewInteraction, ViewAssertion, ViewAction> {
override val view: ViewInteractionDelegate
abstract class KBaseView<T> : KDSLView<T>, BaseActions, BaseAssertions, Interceptable<ViewInteraction, ViewAssertion, ViewAction> {
final override val view: ViewInteractionDelegate
override var root: Matcher<Root> = RootMatchers.DEFAULT

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import android.util.Log
import androidx.test.espresso.UiController
import androidx.test.espresso.action.MotionEvents
import androidx.test.espresso.action.Swiper
import androidx.test.espresso.core.internal.deps.guava.base.Preconditions.checkElementIndex
import com.google.common.base.Preconditions.checkElementIndex

object PreciseSwipe : Swiper {
override fun sendSwipe(
Expand Down
2 changes: 1 addition & 1 deletion kakao/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.5.1
3.6.0

0 comments on commit fd7edfd

Please sign in to comment.