Skip to content

Commit

Permalink
Update metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksey-saenko committed Dec 21, 2023
1 parent 520c129 commit f2cd361
Show file tree
Hide file tree
Showing 10 changed files with 33 additions and 42 deletions.
11 changes: 6 additions & 5 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
# Translators

| Language | Translators |
| :-- | :-- |
| English | [aleksey-saenko](https://github.com/aleksey-saenko) |
| Czech | [Fjuro](https://github.com/Fjuro) |
| Russian | [aleksey-saenko](https://github.com/aleksey-saenko) |
| Slovak | [tomz00](https://github.com/tomz00) |
|:---------| :-- |
| Czech | [Fjuro](https://github.com/Fjuro) |
| English | [aleksey-saenko](https://github.com/aleksey-saenko) |
| French | [ysard](https://github.com/ysard) |
| Russian | [aleksey-saenko](https://github.com/aleksey-saenko) |
| Slovak | [tomz00](https://github.com/tomz00) |
12 changes: 5 additions & 7 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ android {
applicationId = "com.mrsep.musicrecognizer"
minSdk = libs.versions.sdkMin.get().toInt()
targetSdk = libs.versions.sdkTarget.get().toInt()
versionCode = 10
versionName = "1.2.1"
versionCode = 11
versionName = "1.2.2"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"

Expand Down Expand Up @@ -56,15 +56,13 @@ android {
kotlinOptions {
jvmTarget = "1.8"

freeCompilerArgs = freeCompilerArgs + listOf(
freeCompilerArgs += listOf(
"-P",
"plugin:androidx.compose.compiler.plugins.kotlin:reportsDestination=" +
project.buildDir.absolutePath + "/compose_metrics"
)
freeCompilerArgs = freeCompilerArgs + listOf(
project.buildDir.absolutePath + "/compose_metrics",
"-P",
"plugin:androidx.compose.compiler.plugins.kotlin:metricsDestination=" +
project.buildDir.absolutePath + "/compose_metrics"
project.buildDir.absolutePath + "/compose_metrics",
)
}
buildFeatures {
Expand Down
8 changes: 3 additions & 5 deletions core/ui/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,13 @@ android {
kotlinOptions {
jvmTarget = "1.8"

freeCompilerArgs = freeCompilerArgs + listOf(
freeCompilerArgs += listOf(
"-P",
"plugin:androidx.compose.compiler.plugins.kotlin:reportsDestination=" +
project.buildDir.absolutePath + "/compose_metrics"
)
freeCompilerArgs = freeCompilerArgs + listOf(
project.buildDir.absolutePath + "/compose_metrics",
"-P",
"plugin:androidx.compose.compiler.plugins.kotlin:metricsDestination=" +
project.buildDir.absolutePath + "/compose_metrics"
project.buildDir.absolutePath + "/compose_metrics",
)
}
buildFeatures {
Expand Down
2 changes: 2 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/11.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
* Added french translation (@ysard)
* Minor bug fixes
2 changes: 2 additions & 0 deletions fastlane/metadata/android/ru/changelogs/11.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
* Добавлен французский перевод (@ysard)
* Исправления ошибок
8 changes: 3 additions & 5 deletions feature/library/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,13 @@ android {
kotlinOptions {
jvmTarget = "1.8"

freeCompilerArgs = freeCompilerArgs + listOf(
freeCompilerArgs += listOf(
"-P",
"plugin:androidx.compose.compiler.plugins.kotlin:reportsDestination=" +
project.buildDir.absolutePath + "/compose_metrics"
)
freeCompilerArgs = freeCompilerArgs + listOf(
project.buildDir.absolutePath + "/compose_metrics",
"-P",
"plugin:androidx.compose.compiler.plugins.kotlin:metricsDestination=" +
project.buildDir.absolutePath + "/compose_metrics"
project.buildDir.absolutePath + "/compose_metrics",
)
}
buildFeatures {
Expand Down
8 changes: 3 additions & 5 deletions feature/onboarding/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,13 @@ android {
kotlinOptions {
jvmTarget = "1.8"

freeCompilerArgs = freeCompilerArgs + listOf(
freeCompilerArgs += listOf(
"-P",
"plugin:androidx.compose.compiler.plugins.kotlin:reportsDestination=" +
project.buildDir.absolutePath + "/compose_metrics"
)
freeCompilerArgs = freeCompilerArgs + listOf(
project.buildDir.absolutePath + "/compose_metrics",
"-P",
"plugin:androidx.compose.compiler.plugins.kotlin:metricsDestination=" +
project.buildDir.absolutePath + "/compose_metrics"
project.buildDir.absolutePath + "/compose_metrics",
)
}
buildFeatures {
Expand Down
8 changes: 3 additions & 5 deletions feature/preferences/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,13 @@ android {
kotlinOptions {
jvmTarget = "1.8"

freeCompilerArgs = freeCompilerArgs + listOf(
freeCompilerArgs += listOf(
"-P",
"plugin:androidx.compose.compiler.plugins.kotlin:reportsDestination=" +
project.buildDir.absolutePath + "/compose_metrics"
)
freeCompilerArgs = freeCompilerArgs + listOf(
project.buildDir.absolutePath + "/compose_metrics",
"-P",
"plugin:androidx.compose.compiler.plugins.kotlin:metricsDestination=" +
project.buildDir.absolutePath + "/compose_metrics"
project.buildDir.absolutePath + "/compose_metrics",
)
}
buildFeatures {
Expand Down
8 changes: 3 additions & 5 deletions feature/recognition/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,13 @@ android {
kotlinOptions {
jvmTarget = "1.8"

freeCompilerArgs = freeCompilerArgs + listOf(
freeCompilerArgs += listOf(
"-P",
"plugin:androidx.compose.compiler.plugins.kotlin:reportsDestination=" +
project.buildDir.absolutePath + "/compose_metrics"
)
freeCompilerArgs = freeCompilerArgs + listOf(
project.buildDir.absolutePath + "/compose_metrics",
"-P",
"plugin:androidx.compose.compiler.plugins.kotlin:metricsDestination=" +
project.buildDir.absolutePath + "/compose_metrics"
project.buildDir.absolutePath + "/compose_metrics",
)
}
buildFeatures {
Expand Down
8 changes: 3 additions & 5 deletions feature/track/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,13 @@ android {
kotlinOptions {
jvmTarget = "1.8"

freeCompilerArgs = freeCompilerArgs + listOf(
freeCompilerArgs += listOf(
"-P",
"plugin:androidx.compose.compiler.plugins.kotlin:reportsDestination=" +
project.buildDir.absolutePath + "/compose_metrics"
)
freeCompilerArgs = freeCompilerArgs + listOf(
project.buildDir.absolutePath + "/compose_metrics",
"-P",
"plugin:androidx.compose.compiler.plugins.kotlin:metricsDestination=" +
project.buildDir.absolutePath + "/compose_metrics"
project.buildDir.absolutePath + "/compose_metrics",
)
}
buildFeatures {
Expand Down

0 comments on commit f2cd361

Please sign in to comment.