Skip to content

Commit

Permalink
Merge pull request #41 from Vacxe/update-espresso
Browse files Browse the repository at this point in the history
Update espresso
  • Loading branch information
Vacxe authored Nov 17, 2022
2 parents 324a7c3 + bfda084 commit d35eac8
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 16 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:7.3.0"
classpath "com.android.tools.build:gradle:7.3.1"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

// NOTE: Do not place your application dependencies here; they belong
Expand Down
7 changes: 3 additions & 4 deletions buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,14 @@ plugins {
}

repositories {
jcenter()
google()
mavenCentral()
gradlePluginPortal()
}

dependencies {
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.21")
implementation("com.android.tools.build:gradle:4.2.2")
implementation("org.jetbrains.dokka:dokka-gradle-plugin:1.4.32")
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.20")
implementation("com.android.tools.build:gradle:7.3.1")
implementation("org.jetbrains.dokka:dokka-gradle-plugin:1.7.20")
implementation("org.kohsuke:github-api:1.129")
}
2 changes: 1 addition & 1 deletion buildsystem/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.1
0.2.0
2 changes: 1 addition & 1 deletion compose/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

android {
compileSdkVersion(33)
compileSdk = 33
defaultConfig.apply {
minSdk = 21
targetSdk = 33
Expand Down
6 changes: 4 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@
kotlinVersion = "1.7.20"
dokkaVersion = "1.7.10"
appcompatVersion = "1.5.1"
espressoVersion = "3.4.0"
espressoVersion = "3.5.0"

junitVersion = "4.13.2"
junitExtVersion = "1.1.3"
multidexVersion = "2.0.1"
materialVersion = "1.4.0"
activityComposeVersion = "1.6.0"
composeVersion = "1.2.1"
composeVersion = "1.3.1"
composeCompilerVersion = "1.3.2"

[libraries]
composeActivityCompose = { module = "androidx.activity:activity-compose", version.ref = "activityComposeVersion" }
Expand Down
8 changes: 1 addition & 7 deletions sample/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,13 @@ android {
}

composeOptions {
kotlinCompilerVersion = libs.versions.kotlinVersion.get()
kotlinCompilerExtensionVersion = "1.3.2"
kotlinCompilerExtensionVersion = libs.versions.composeCompilerVersion.get()
}

packagingOptions {
resources.excludes.add("META-INF/*")
}

compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}

kotlinOptions {
jvmTarget = "11"
}
Expand Down

0 comments on commit d35eac8

Please sign in to comment.