Skip to content

Commit

Permalink
1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
shrikanth7698 committed Apr 18, 2022
1 parent ce15c1a commit 7853f03
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ gradlePlugin {

dependencies {
implementation("com.android.tools.build:gradle:7.1.2")
implementation(kotlin("gradle-plugin", "1.6.10"))
implementation(kotlin("gradle-plugin", "1.5.31"))
}
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/CommonAndroidPlugin.kt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class CommonAndroidPlugin : Plugin<Project> {
compileOptions {
sourceCompatibility = VERSION_1_8
targetCompatibility = VERSION_1_8
isCoreLibraryDesugaringEnabled = true
isCoreLibraryDesugaringEnabled = false
}

buildFeatures.compose = true
Expand All @@ -29,7 +29,7 @@ class CommonAndroidPlugin : Plugin<Project> {
kotlinCompilerExtensionVersion = Compose.Version
}

target.dependencies.add("coreLibraryDesugaring", Kotlin.DesugarJdkLibs)
// target.dependencies.add("coreLibraryDesugaring", Kotlin.DesugarJdkLibs)
}
}
}
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/Dependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ object AndroidSdk {
}

object Kotlin {
const val Version = "1.6.10"
const val Version = "1.5.31"

const val GradlePlugin = "org.jetbrains.kotlin:kotlin-gradle-plugin:$Version"
const val DokkaGradlePlugin = "org.jetbrains.dokka:dokka-gradle-plugin:1.5.0"
Expand Down Expand Up @@ -97,7 +97,7 @@ object Timber {
}

object Compose {
const val Version = "1.1.1"
const val Version = "1.0.4"
const val AccompanistVersion = "0.23.1"

const val Runtime = "androidx.compose.runtime:runtime:$Version"
Expand Down
4 changes: 2 additions & 2 deletions library/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ group = "com.github.ZuperInc"

android {

defaultConfig.versionCode = 105
defaultConfig.versionName = "1.0.5"
defaultConfig.versionCode = 106
defaultConfig.versionName = "1.0.6"

tasks.withType<KotlinCompile> {
kotlinOptions {
Expand Down

0 comments on commit 7853f03

Please sign in to comment.