Skip to content

Commit

Permalink
⬆️ bump libs to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
theapache64 committed Nov 5, 2023
1 parent 1458fda commit 15daba1
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 8 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

buildscript {
ext {
compose_version = '1.4.3'
compose_compiler_version = '1.4.7'
compose_version = '1.5.4'
compose_compiler_version = '1.5.3'
}
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '8.0.1' apply false
id 'com.android.library' version '8.0.1' apply false
id 'org.jetbrains.kotlin.android' version '1.8.21' apply false
id 'com.android.application' version '8.1.0' apply false
id 'com.android.library' version '8.1.0' apply false
id 'org.jetbrains.kotlin.android' version '1.9.10' apply false
}

subprojects {
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).configureEach {
tasks.withType(KotlinCompile).configureEach {
kotlinOptions {
if (project.findProperty("myapp.enableComposeCompilerReports") == "true") {
freeCompilerArgs += [
Expand Down
4 changes: 2 additions & 2 deletions rebugger/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {

android {
namespace 'com.theapache64.rebugger'
compileSdk 33
compileSdk 34

publishing {
singleVariant("release") {
Expand All @@ -17,7 +17,7 @@ android {

defaultConfig {
minSdk 21
targetSdk 33
targetSdk 34

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
Expand Down
4 changes: 2 additions & 2 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ plugins {

android {
namespace 'com.theapache64.rebuggersample'
compileSdk 33
compileSdk 34

defaultConfig {
applicationId "com.theapache64.rebuggersample"
minSdk 24
targetSdk 33
targetSdk 34
versionCode 1
versionName "1.0"

Expand Down

0 comments on commit 15daba1

Please sign in to comment.