Skip to content

Commit

Permalink
Merge pull request #37 from MateusRodCosta/dev
Browse files Browse the repository at this point in the history
Version 1.3.3
  • Loading branch information
MateusRodCosta authored Oct 3, 2024
2 parents 13401de + 527abce commit 30f1169
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .idea/compiler.xml

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

1 change: 1 addition & 0 deletions .idea/gradle.xml

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

3 changes: 2 additions & 1 deletion .idea/misc.xml

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

12 changes: 6 additions & 6 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ if (keystorePropertiesFile.exists()) {
}

kotlin {
jvmToolchain(17)
jvmToolchain(21)
}

android {
Expand All @@ -25,8 +25,8 @@ android {
minSdk = 26
//noinspection OldTargetApi
targetSdk = 34
versionCode = 23
versionName = "1.3.2"
versionCode = 24
versionName = "1.3.3"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down Expand Up @@ -60,11 +60,11 @@ android {
}

compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}
kotlinOptions {
jvmTarget = "17"
jvmTarget = "21"
}

androidResources {
Expand Down
5 changes: 5 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/24.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<strong>IMPORTANT</strong>:
Starting in v1.2.3, a 1 kb buffer is used for the file copy, but that introduced a bug: zeroes might be added at the end of the saved file.
This was fixed in 1.3.1, please report any issue you may find!

This is a minor maintenance release for adding Java 21 support.
5 changes: 5 additions & 0 deletions fastlane/metadata/android/pt-BR/changelogs/24.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<strong>IMPORTANTE</strong>:
A partir da versão 1.2.3 a cópia de arquivo passou a usar um buffer de 1 kb, mas isso introduziu um bug: zeros poderiam ser adicionados no final do arquivo salvo.
Isso foi corrigido na versão 1.3.1, por favor reporte qualquer problema!

Esta é uma versão de manutenção com foco no suporte ao Java 21.
8 changes: 4 additions & 4 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[versions]
agp = "8.6.0"
agp = "8.7.0"
kotlin = "2.0.0"
ktx = "1.13.1"
preference-ktx = "1.2.1"
lifecycle-runtime-ktx = "2.8.5"
lifecycle-runtime-ktx = "2.8.6"
splashscreen = "1.0.1"
composeBom = "2024.09.01"
composeBom = "2024.09.03"
activityCompose = "1.9.2"
navigationCompose = "2.8.0"
navigationCompose = "2.8.2"
junit = "4.13.2"
androidxTestRunner = "1.6.2"
androidxTestRules = "1.6.1"
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionSha256Sum=1541fa36599e12857140465f3c91a97409b4512501c26f9631fb113e392c5bd1
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.1-bin.zip
distributionSha256Sum=31c55713e40233a8303827ceb42ca48a47267a0ad4bab9177123121e71524c26
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down

0 comments on commit 30f1169

Please sign in to comment.