Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ android {
}

composeOptions {
kotlinCompilerExtensionVersion "1.0.5"
kotlinCompilerExtensionVersion libs.versions.composeCompiler.get()
}
}

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
buildscript {
ext.buildConfig = [
"applicationId": "com.haroldadmin.crashyapp",
"compileSdk" : 31,
"compileSdk" : 33,
"minSdk" : 21,
"targetSdk" : 31,
"versionCode" : 1,
Expand Down
15 changes: 9 additions & 6 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[versions]
kotlin = "1.5.31"
agp = "7.0.3"
kotlin = "1.7.20"
agp = "7.4.2"
ktlint = "10.1.0"
appCompat = "1.3.0"
coreTest = "2.0.0"
Expand All @@ -18,14 +18,17 @@ mockk = "1.9.3"
robolectric = "4.3.1"
startup = "1.0.0"
composeActivity = "1.3.1"
compose = "1.0.5"
accompanist = "0.21.3-beta"
composeUi = "1.3.3"
composeCompiler = "1.3.2"
composeFoundation = "1.3.1"
composeMaterial = "1.3.1"
accompanist = "0.28.0"

[libraries]

composeActivity = { module = "androidx.activity:activity-compose", version.ref = "composeActivity" }
composeMaterial = { module = "androidx.compose.material:material", version.ref = "compose" }
composeTooling = { module = "androidx.compose.ui:ui-tooling", version.ref = "compose" }
composeMaterial = { module = "androidx.compose.material:material", version.ref = "composeMaterial" }
composeTooling = { module = "androidx.compose.ui:ui-tooling", version.ref = "composeUi" }
accompanistSysUi = { module = "com.google.accompanist:accompanist-systemuicontroller", version.ref = "accompanist" }
accompanistInsets = { module = "com.google.accompanist:accompanist-insets", version.ref = "accompanist" }
agp = { module = "com.android.tools.build:gradle", version.ref = "agp" }
Expand Down
6 changes: 3 additions & 3 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Tue Jan 14 11:19:34 IST 2020
#Thu Mar 02 18:03:21 CET 2023
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-all.zip
zipStoreBase=GRADLE_USER_HOME
2 changes: 1 addition & 1 deletion what-the-stack/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ android {
}

composeOptions {
kotlinCompilerExtensionVersion libs.versions.compose.get()
kotlinCompilerExtensionVersion libs.versions.composeCompiler.get()
}
}

Expand Down