Skip to content

Commit

Permalink
misc: bump up version
Browse files Browse the repository at this point in the history
  • Loading branch information
JunkFood02 committed Oct 6, 2024
1 parent 559c3cb commit 4f12d44
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ buildscript {

val versionMajor = 0
val versionMinor = 17
val versionPatch = 0
val versionPatch = 1
val versionBuild = 0 // bump for dogfood builds, public betas, etc.
val versionCode = versionMajor * 100000 + versionMinor * 1000 + versionPatch * 100 + versionBuild
val versionName = "$versionMajor.$versionMinor.$versionPatch"
Expand Down
9 changes: 6 additions & 3 deletions buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repositories {
}

dependencies {
implementation("com.android.tools.build:gradle:7.1.3")
implementation("com.android.tools.build:gradle:7.4.2")
implementation(gradleApi())
implementation(localGroovy())
}
Expand All @@ -24,5 +24,8 @@ gradlePlugin {
}
}

java.sourceCompatibility = JavaVersion.VERSION_1_8
java.targetCompatibility = JavaVersion.VERSION_1_8
kotlin {
jvmToolchain {
languageVersion.set(JavaLanguageVersion.of(17))
}
}

0 comments on commit 4f12d44

Please sign in to comment.