Sim help
- By ocnbrze
- Apps & Games
- 9 Replies
we are all sheep....i'm just following where the herd goes....LOL
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.

<item name="android:windowDrawsSystemBarBackgrounds">false</item>
What app are you watching the video with? I may not have the ability / permission to make the phone "stay awake."my moto g4 plus keeps switching off when i am watching a video



There are 4 options I can see:
1) See whether there are any theming options (including night modes or similar as well as any actual theme options LG provide) in the device settings which have an affect in this. I don't have this device or any LG so don't know what options there might be, but I can imagine some device theme/display setting interacting badly with your message setting, in which case changing that (or even toggling it to something else and back again) might correct this.
2) See whether there is anything at all in the app's settings that changes this (yes, I know you've looked, just trying to cover all possibilities).
3) If the problem is due to an incompatibility between old (Android 8) setting and LG's "new" Android 9 system or apps then deleting those settings (i.e. resetting the app to defaults) might fix it. So you could start by force stopping the message app and clearing its cache, or clearing its cache and rebooting. More likely to work is clearing the message app's data. Unless LG are doing something very weird and non-standard that should not affect your messages: there's a system database that stores those independent of which SMS app you are using, so clearing data for the message app should only affect the message app's settings. If you are worried then back up your messages first (probably not a bad idea anyway), but I've cleared data for both system and third party message apps on other phones without losing messages (on my phone, running Android 10, it's the system app "Phone and Messaging Storage" which actually stores the messages. On other phones I've owned there was a separate "Message Storage" app. So don't clear data for any app that has "message" and "storage" in the name, because that will erase your messages).
4) I know you said you didn't want to, but the final option is to use a third party app. Personally I think there are several which are better than any manufacturer's own app that I've ever used, so I never use the built-in app, but it's your preference. But if nothing else works, this will.

package com.trashysofts.auct
import android.content.Intent
import android.os.Bundle
import android.util.Patterns
import android.widget.Toast
import androidx.appcompat.app.AppCompatActivity
import com.google.firebase.auth.FirebaseAuth
import kotlinx.android.synthetic.main.register_layout.*
class RegisterActivity : AppCompatActivity() {
private lateinit var auth: FirebaseAuth
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.register_layout)
auth = FirebaseAuth.getInstance()
buttonJoin.setOnClickListener {
signUpUser()
}
}
private fun signUpUser() {
if (emailTextSignUp.text.toString().isEmpty()) {
emailTextSignUp.error = "Please enter email"
emailTextSignUp.requestFocus()
return
}
if (!Patterns.EMAIL_ADDRESS.matcher(emailTextSignUp.text.toString()).matches()) {
emailTextSignUp.error = "Please enter valid email"
emailTextSignUp.requestFocus()
return
}
if (passwordTextSignUp.text.toString().isEmpty()) {
passwordTextSignUp.error = "Please enter password"
passwordTextSignUp.requestFocus()
return
}
auth.createUserWithEmailAndPassword(emailTextSignUp.text.toString(), passwordTextSignUp.text.toString())
.addOnCompleteListener(this) { task ->
if (task.isSuccessful) {
startActivity(Intent(this,LoginActivity::class.java))
finish()
} else {
Toast.makeText(baseContext, "Sign Up failed",
Toast.LENGTH_SHORT).show()
}
}
}
}

Line 1
Line 2
Line 3