mirror of
https://github.com/Shabinder/SpotiFlyer.git
synced 2024-11-22 01:04:31 +01:00
Fix Toasts from Background Thread
This commit is contained in:
parent
9add1dd88c
commit
c4adc1a0db
@ -243,11 +243,13 @@ class MainActivity : ComponentActivity() {
|
||||
}
|
||||
|
||||
private fun showPopUpMessage(string: String, long: Boolean = false) {
|
||||
android.widget.Toast.makeText(
|
||||
applicationContext,
|
||||
string,
|
||||
if (long) android.widget.Toast.LENGTH_LONG else android.widget.Toast.LENGTH_SHORT
|
||||
).show()
|
||||
runOnUiThread {
|
||||
android.widget.Toast.makeText(
|
||||
applicationContext,
|
||||
string,
|
||||
if (long) android.widget.Toast.LENGTH_LONG else android.widget.Toast.LENGTH_SHORT
|
||||
).show()
|
||||
}
|
||||
}
|
||||
|
||||
@Suppress("DEPRECATION")
|
||||
|
@ -25,7 +25,7 @@ internal class DesktopAnalyticsManager(
|
||||
loggingLevel = LoggingLevel.ERROR
|
||||
setDeviceIdStrategy(DeviceIdStrategy.UUID)
|
||||
enableFeatures(*featuresSet)
|
||||
setRequiresConsent(true)
|
||||
setRequiresConsent(false)
|
||||
}
|
||||
|
||||
Countly.init(File(fileManager.defaultDir()), config)
|
||||
|
Loading…
Reference in New Issue
Block a user