Skip to content

Commit

Permalink
Fix AMOLED and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasnlm committed Mar 1, 2022
1 parent dc4552c commit cdac9bb
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ android {

defaultConfig {
// versionCode and versionName must be hardcoded to support F-droid
versionCode 1506001
versionName '15.6.0'
versionCode 1507001
versionName '15.7.0'
minSdkVersion 21
targetSdkVersion 32
multiDexEnabled true
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ buildscript {

if (System.getenv('IS_GOOGLE_BUILD')) {
classpath 'com.google.gms:google-services:4.3.8'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.7.0'
classpath 'com.google.firebase:perf-plugin:1.4.0'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.8.1'
classpath 'com.google.firebase:perf-plugin:1.4.1'
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class SwitchButtonView : FrameLayout {
}
}

val iconColor = palette.covered.toOppositeMax(0.9f)
val iconColor = palette.accent.toOppositeMax(0.9f)
icon.apply {
setImageResource(R.drawable.touch)
imageTintList = ColorStateList.valueOf(iconColor.toIntBits())
Expand Down
2 changes: 1 addition & 1 deletion proprietary/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ dependencies {
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.5.1'

// Firebase
implementation platform('com.google.firebase:firebase-bom:28.1.0')
implementation platform('com.google.firebase:firebase-bom:29.1.0')
implementation 'com.google.firebase:firebase-analytics-ktx'
implementation 'com.google.firebase:firebase-crashlytics'
implementation 'com.google.firebase:firebase-firestore-ktx'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ object Themes {
accent = 0xFFFFFF,
background = 0x000000,
covered = 0x616161,
coveredOdd = 616161,
coveredOdd = 0x616161,
uncovered = 0x000000,
uncoveredOdd = 0x050505,
minesAround1 = 0xCCCCCC,
Expand Down

0 comments on commit cdac9bb

Please sign in to comment.