Skip to content

Commit

Permalink
chore: bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
adrielcafe committed Jul 30, 2021
1 parent 788cc7f commit 9b505b0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Jetpack Compose greatly improved the way we build UIs on Android, but not how we

Lyricist tries to make working with strings as powerful as building UIs with Compose, *i.e.*, working with parameterized string is now typesafe, use of `when` expression to work with plurals with more flexibility, and even load/update the strings dynamically via an API!

**Development status:** Lyricist will be in Beta until Compose and KSP become stable.
**Development status:** Lyricist will be in Beta until ~~Compose and~~ KSP become stable.

#### Features
- [x] [Simple API](#usage) to handle locale changes and provide the current strings
Expand Down
7 changes: 3 additions & 4 deletions android-module.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ apply plugin: 'kotlin-android'

android {
compileSdk 30
buildToolsVersion "30.0.3"
defaultConfig {
minSdk 21
targetSdk 30
Expand All @@ -28,11 +27,11 @@ android {
kotlinCompilerExtensionVersion libs.versions.compose.get()
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_1_8.toString()
jvmTarget = JavaVersion.VERSION_11.toString()
useIR = true
}
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ kotlin.code.style=official

# Maven
GROUP=cafe.adriel.lyricist
VERSION_NAME=1.0.0-beta02
VERSION_NAME=1.0.0-beta03

POM_DESCRIPTION=The missing I18N/L10N library for Jetpack Compose!
POM_INCEPTION_YEAR=2021
Expand Down
8 changes: 4 additions & 4 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
plugin-android = "7.1.0-alpha03"
plugin-android = "7.0.0"
plugin-ktlint = "10.1.0"
plugin-maven = "0.17.0"

Expand All @@ -9,9 +9,9 @@ ksp = "1.5.10-1.0.0-beta02"
caseFormat = "0.2.0"
konsumeXml = "1.0"

appCompat = "1.3.0"
compose = "1.0.0-rc02"
composeActivity = "1.3.0-rc02"
appCompat = "1.3.1"
compose = "1.0.0"
composeActivity = "1.3.0"

[libraries]
plugin-android = { module = "com.android.tools.build:gradle", version.ref = "plugin-android" }
Expand Down

0 comments on commit 9b505b0

Please sign in to comment.