Skip to content

Commit

Permalink
Update 2.4_r1
Browse files Browse the repository at this point in the history
  • Loading branch information
D4rK7355608 committed Jun 22, 2023
1 parent 99fc3a7 commit db109eb
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .idea/kotlinc.xml

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

3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Version 2.4_r1:
- Made various under-the-hood improvements for a better overall app experience.

# Version 2.3_r2:
- Made minor under-the-hood improvements for a better overall app experience.

Expand Down
13 changes: 5 additions & 8 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ android {
applicationId 'com.d4rk.musicsleeptimer.plus'
minSdk 26
targetSdk 33
versionCode 22
versionName '2.3_r2'
archivesBaseName = "com.d4rk.musicsleeptimer.plus-v${versionName}"
versionCode 23
versionName '2.4_r1'
archivesBaseName = "${applicationId}-v${versionName}"
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
resourceConfigurations += ['bg', 'de', 'en', 'es', 'fr', 'hi', 'hu', 'in', 'it', 'ja', 'pl', 'ro', 'ru', 'sv', 'tr', 'uk']
}
Expand All @@ -40,9 +40,6 @@ android {
kotlinOptions {
jvmTarget = '17'
}
buildFeatures {
buildConfig = true
}
bundle {
storeArchive {
enable = true
Expand All @@ -51,8 +48,8 @@ android {
}
dependencies {
implementation 'com.google.firebase:firebase-crashlytics-ktx:18.3.7'
implementation 'com.google.firebase:firebase-analytics-ktx:21.2.2'
implementation 'com.google.firebase:firebase-perf:20.3.2'
implementation 'com.google.firebase:firebase-analytics-ktx:21.3.0'
implementation 'com.google.firebase:firebase-perf:20.3.3'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.multidex:multidex:2.0.1'
testImplementation 'junit:junit:4.13.2'
Expand Down
3 changes: 0 additions & 3 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
<resources>
<string name="app_name" translatable="false">Music Sleep Timer</string>
<string name="app_description">Set your music to stop after you fall asleep.</string>
<string name="tile_subtitle">Tap to start</string>
<string name="notification_action_increment" translatable="false">+%d</string>
<string name="notification_action_decrement" translatable="false">-%d</string>
</resources>
5 changes: 5 additions & 0 deletions app/src/main/res/values/untranslatable_strings.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<resources>
<string name="app_name" translatable="false">Music Sleep Timer</string>
<string name="notification_action_increment" translatable="false">+%d</string>
<string name="notification_action_decrement" translatable="false">-%d</string>
</resources>
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
plugins {
id 'com.android.application' version '8.0.1' apply false
id 'com.android.library' version '8.0.1' apply false
id 'org.jetbrains.kotlin.android' version '1.8.21' apply false
id 'com.google.gms.google-services' version '4.3.14' apply false
id 'com.android.application' version '8.0.2' apply false
id 'com.android.library' version '8.0.2' apply false
id 'org.jetbrains.kotlin.android' version '1.8.22' apply false
id 'com.google.gms.google-services' version '4.3.15' apply false
id 'com.google.firebase.crashlytics' version '2.9.2' apply false
}
task clean(type: Delete) {
Expand Down

0 comments on commit db109eb

Please sign in to comment.