Skip to content

Commit

Permalink
Update 2.3_r2
Browse files Browse the repository at this point in the history
  • Loading branch information
D4rK7355608 committed May 8, 2023
1 parent b4dd886 commit 99fc3a7
Show file tree
Hide file tree
Showing 9 changed files with 33 additions and 26 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.

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

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

# Version 2.2_r1:
- Made various under-the-hood improvements for a better overall app experience.

Expand Down
15 changes: 8 additions & 7 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@ android {
applicationId 'com.d4rk.musicsleeptimer.plus'
minSdk 26
targetSdk 33
versionCode 20
versionName '2.2_r1'
versionCode 22
versionName '2.3_r2'
archivesBaseName = "com.d4rk.musicsleeptimer.plus-v${versionName}"
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
resourceConfigurations += ['bg', 'de', 'en', 'es', 'fr', 'hi', 'hu', 'in', 'it', 'ja', 'pl', 'ro', 'ru', 'sv', 'tr', 'uk']
}
buildTypes {
release {
Expand All @@ -33,11 +34,11 @@ android {
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = '11'
jvmTarget = '17'
}
buildFeatures {
buildConfig = true
Expand All @@ -49,9 +50,9 @@ android {
}
}
dependencies {
implementation 'com.google.firebase:firebase-crashlytics-ktx:18.3.6'
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.1'
implementation 'com.google.firebase:firebase-perf:20.3.2'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.multidex:multidex:2.0.1'
testImplementation 'junit:junit:4.13.2'
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/mipmap-anydpi/ic_launcher.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background"/>
<background android:drawable="@color/colorLauncherBackground"/>
<foreground android:drawable="@drawable/ic_launcher_foreground"/>
<monochrome android:drawable="@drawable/ic_launcher_foreground"/>
</adaptive-icon>
2 changes: 1 addition & 1 deletion app/src/main/res/values-night/colors.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<resources>
<color name="ic_launcher_background">#2D2D2D</color>
<color name="colorLauncherBackground">#2D2D2D</color>
</resources>
2 changes: 1 addition & 1 deletion app/src/main/res/values/colors.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<resources>
<color name="ic_launcher_background">#FFFFFF</color>
<color name="colorLauncherBackground">#FFFFFF</color>
</resources>
20 changes: 10 additions & 10 deletions app/src/main/res/xml/config_locales.xml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
<locale-config
xmlns:android="http://schemas.android.com/apk/res/android">
<locale android:name="bg"/>
<locale android:name="de"/>
<locale android:name="en"/>
<locale android:name="ro"/>
<locale android:name="ru"/>
<locale android:name="in"/>
<locale android:name="es"/>
<locale android:name="fr"/>
<locale android:name="hi"/>
<locale android:name="hu"/>
<locale android:name="in"/>
<locale android:name="it"/>
<locale android:name="ja"/>
<locale android:name="hi"/>
<locale android:name="es"/>
<locale android:name="tr"/>
<locale android:name="de"/>
<locale android:name="pl"/>
<locale android:name="uk"/>
<locale android:name="bg"/>
<locale android:name="ro"/>
<locale android:name="ru"/>
<locale android:name="sv"/>
<locale android:name="hu"/>
<locale android:name="tr"/>
<locale android:name="uk"/>
</locale-config>
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'com.android.application' version '8.0.0' apply false
id 'com.android.library' version '8.0.0' apply false
id 'org.jetbrains.kotlin.android' version '1.8.20' apply false
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.google.firebase.crashlytics' version '2.9.2' apply false
}
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Sun Apr 16 11:54:57 EEST 2023
#Mon May 08 12:56:09 EEST 2023
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 99fc3a7

Please sign in to comment.