Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/src/keyboards/java/be/scri/helpers/KeyHandler.kt
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ class KeyHandler(
editor.apply()

ime.updateUI()
Log.i(TAG, "New conjugate_index: $currentValue")
Log.d(TAG, "New conjugate_index: $currentValue")
}

/**
Expand Down
1 change: 0 additions & 1 deletion app/src/main/java/be/scri/helpers/KeyboardBase.kt
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,6 @@ class KeyboardBase {
else -> res.getDimension(R.dimen.conjugate_view_key_height_3x3).toInt()
}
} else {
Log.i("≠", "The current state is not conjugate view")
when (resources.configuration.orientation) {
Configuration.ORIENTATION_LANDSCAPE -> {
res.getDimension(R.dimen.key_height_landscape).toInt()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class ContractDataLoader(
*/
fun loadContract(language: String): DataContract? {
val contractName = "${language.lowercase()}.yaml"
Log.i("ContractDataLoader", "Attempting to load contract: $contractName")
Log.d("ContractDataLoader", "Attempting to load contract: $contractName")

return try {
context.assets.open("data-contracts/$contractName").use { contractFile ->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
package be.scri.ui.screens

import android.annotation.SuppressLint
import android.util.Log
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Spacer
import androidx.compose.foundation.layout.height
Expand Down Expand Up @@ -387,7 +386,6 @@ private fun getLayoutListData(
title = R.string.i18n_app_settings_keyboard_layout_default_layout,
desc = R.string.i18n_app_settings_keyboard_layout_default_layout_description,
action = {
Log.d("Navigation", "onDefaultLayoutSelect clicked")
onDefaultLayoutSelect()
},
),
Expand All @@ -398,7 +396,6 @@ private fun getLayoutListData(
title = R.string.i18n_app_settings_keyboard_layout_default_currency,
desc = R.string.i18n_app_settings_keyboard_layout_default_currency_description,
action = {
Log.d("Navigation", "onCurrencySelect clicked")
onCurrencySelect()
},
),
Expand Down Expand Up @@ -470,7 +467,6 @@ private fun getTranslationSourceLanguageListData(onTranslationLanguageSelect: ()
title = R.string.i18n_app_settings_keyboard_translation_select_source,
desc = R.string.i18n_app_settings_keyboard_translation_select_source_description,
action = {
Log.d("Navigation", "onTranslationLanguageSelect clicked")
onTranslationLanguageSelect()
},
),
Expand Down
2 changes: 0 additions & 2 deletions app/src/main/java/be/scri/views/KeyboardView.kt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ import android.os.Handler
import android.os.Looper
import android.os.Message
import android.util.AttributeSet
import android.util.Log
import android.util.TypedValue
import android.view.Gravity
import android.view.LayoutInflater
Expand Down Expand Up @@ -685,7 +684,6 @@ class KeyboardView
}

fun soundIfNeeded() {
Log.d("Souncheck", "soundIfNeeded: $setSound")
if (setSound) {
performSoundFeedback()
}
Expand Down