Skip to content

Commit

Permalink
chore: bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
adrielcafe committed Sep 9, 2021
1 parent c5b6f9f commit f6a73d6
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ 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.

#### Features
- [x] [Simple API](#usage) to handle locale changes and provide the current strings
- [x] [Multi module support](#multi-module-settings)
- [x] Code generation with [KSP](https://github.com/google/ksp)
- [x] [Easy migration](#migrating-from-stringsxml) from `strings.xml`
- [ ] [Compose for Desktop](https://github.com/JetBrains/compose-jb) support

#### Roadmap
- [Compose for Desktop](https://github.com/JetBrains/compose-jb) support

#### Limitations
* The XML processor doesn't handle `few` and `many` [plural values](https://developer.android.com/guide/topics/resources/string-resource#Plurals) (PRs are welcome)
Expand Down
4 changes: 2 additions & 2 deletions android-module.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
apply plugin: 'kotlin-android'

android {
compileSdk 30
compileSdk 31
defaultConfig {
minSdk 21
targetSdk 30
targetSdk 31
versionCode 1
versionName "1.0"
}
Expand Down
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-beta04
VERSION_NAME=1.0.0

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

kotlin = "1.5.21"
kotlin = "1.5.30"

ksp = "1.5.21-1.0.0-beta06"
ksp = "1.5.30-1.0.0"
caseFormat = "0.2.0"
konsumeXml = "1.0"

appCompat = "1.3.1"
compose = "1.0.1"
composeActivity = "1.3.0"
compose = "1.1.0-alpha03"
composeActivity = "1.3.1"

[libraries]
plugin-android = { module = "com.android.tools.build:gradle", version.ref = "plugin-android" }
Expand All @@ -30,4 +30,4 @@ compose-ui = { module = "androidx.compose.ui:ui", version.ref = "compose" }
compose-material = { module = "androidx.compose.material:material", version.ref = "compose" }

[bundles]
plugins = ["plugin-android", "plugin-ktlint", "plugin-maven", "plugin-kotlin", "plugin-ksp"]
plugins = ["plugin-android", "plugin-ktlint", "plugin-maven", "plugin-kotlin", "plugin-ksp"]
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Fri May 21 21:22:22 BRT 2021
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
2 changes: 1 addition & 1 deletion kotlin-module.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'kotlin'

compileKotlin {
kotlinOptions {
jvmTarget = JavaVersion.VERSION_1_8.toString()
jvmTarget = JavaVersion.VERSION_11.toString()
freeCompilerArgs += '-Xexplicit-api=strict'
}
}

0 comments on commit f6a73d6

Please sign in to comment.