Google Inbox officially shutting down in 15 days
- By hypnos123
- VIP Lounge
- 1 Replies
thanks for sharing
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.
I recently bought a Alcatel 1S (2019) and only have the default ringtone (fresh) With no audio profiles to change to where are all the addition ringtones on the phone or where can I find them.
Yestext recognition? are you developing an app?
i have flashed stock motorola firmware in my device but still it is stuck on warning bootloader unloked screen and does not boot into an os.Did you use TWRP to make a backup before you erased everything? If so, where did you store it? And if you don't mind my asking, what were you trying to do and what did you expect "erase all partitions" to do?
The curious thing is that the last couple of images look like a stock recovery, not TWRP, which implies that TWRP was not actually installed on your phone. So how exactly did you run TWRP? Did you use "fastboot boot" to boot it with a TWRP image or something? If so then you can also do the same thing again and load a custom ROM using TWRP. But as many phones don't support "fastboot boot" I don't know whether this is what you did (which is why I'm asking).
Anyway if you didn't use TWRP to take a backup before wiping everything, you don't have TWRP installed on the device, and your device doesn't support "fastboot boot" then you have no alternative but to reflash it with stock motorola firmware. As I've never owned a Moto smartphone I'm not familiar with where you would find this or what you would use to flash it, but hopefully others will be.
Don't worry about "viruses". The stock software won't contain malware, and there actually aren't any Android viruses (there is malware, but not the type that is correctly called a "virus". Android malware is invariably of the "trojan" type, i.e. hidden inside an app that the user installs on their device). So if you are careful about what you install and don't let others have access to your phone you shouldn't have to worry about malware.
No, this is a small company third party service, in-house developed. The idea is to get something that will integrate with the back-end system already in place.Presumably you've got a company iOS device management solution from Apple. I know Samsung offers enterprise device management solutions as well. https://insights.samsung.com/mobile-security/device-management/ This might be easier, than trying to hack together some DIY thing using custom ROMs.
Thanks. I'll try thatTry sharing the video with an app called YouCut.
Then save the video.
You will lose a bit of quality, but you should gain back all the things that you desire.
You Cut is a video editing app, but I use it as a transcoder as well when I have odd fotmats or troubles similar to what you are experiencing.
Plus, it is really a cool app anyway.
It has unobtrusive ads, but you can stop this by turning off all internet access (wi-fi and network) while you use it.
If you forget, and open the app with internet active, you can still turn off the internet abd then clear the cache of the app.
Personally, I just use a firewall to stop the app from accessing the internet.
https://video-zip.en.uptodown.com/android
java
|_ com.myapplication.businessapplication
|_ employeetool
|_ EmployeeNavigationActivity
|_ managertool
|_ ManagerNavigationActivity
|_ MainActivity
Someone made a fork of lineage that was x86 based so I made a USB drive and just installed it
package com.example.shoponlinenicheteck
import android.os.Bundle
import android.view.View
import android.widget.Button
import android.widget.EditText
import android.widget.Toast
import androidx.annotation.NonNull
import androidx.appcompat.app.AppCompatActivity
import com.google.android.gms.tasks.OnCompleteListener
import com.google.android.material.textfield.TextInputLayout
import com.google.firebase.auth.AuthResult
import com.google.firebase.auth.FirebaseAuth
import com.google.firebase.auth.FirebaseUser
import com.google.firebase.database.FirebaseDatabase
import org.w3c.dom.Text
class RegisterActivity : AppCompatActivity() {
var ufirstname: EditText? = null
var ulastname: EditText? = null
var uemail: EditText? = null
var upassword: EditText? = null
var uconfpassword: EditText? = null
var ucontactno: EditText? = null
var btnRegister: Button? = null
var userFirstNameWrapper: TextInputLayout? = null
var userLastNameWrapper: TextInputLayout? = null
var userEmailWrapper: TextInputLayout? = null
var userPasswordWrapper: TextInputLayout? = null
var userConfPasswordWrapper: TextInputLayout? = null
var userContactNoWrapper: TextInputLayout? = null
private var uAuth: FirebaseAuth? = null
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_register)
val ufirstname = findViewById<View>(R.id.userFirstName)
val ulastname = findViewById<View>(R.id.userLastName)
val uemail = findViewById<View>(R.id.userEmailAddress)
val upassword = findViewById<View>(R.id.userPassword)
val uconfpassword = findViewById<View>(R.id.userConfPassword)
val ucontactno = findViewById<View>(R.id.userContactNumber)
val userFirstNameWrapper = findViewById<TextInputLayout>(R.id.userFirstNameWrapper)
val userLastNameWrapper = findViewById<TextInputLayout>(R.id.userlastNameWrapper)
val userEmailWrapper = findViewById<TextInputLayout>(R.id.userEmailWrapper)
val userPasswordWrapper = findViewById<TextInputLayout>(R.id.userPasswordWrapper)
val userConfPasswordWrapper = findViewById<TextInputLayout>(R.id.userConfPasswordWrapper)
val userContactNoWrapper = findViewById<TextInputLayout>(R.id.userContactNoWrapper)
val btnRegister=findViewById<Button>(R.id.btnRegister)
}
init {
var onClick: Unit
run {
if (uAuth!!.currentUser != null) {
//User is Logged in and can redirect to another activity.
val firstname = ufirstname!!.text.toString().trim { it <= ' ' }
val lastname = ulastname!!.text.toString().trim { it <= ' ' }
val email = uemail!!.text.toString().trim { it <= ' ' }
val password = upassword!!.text.toString().trim { it <= ' ' }
val confpassword = uconfpassword!!.text.toString().trim { it <= ' ' }
val contactno = ucontactno!!.text.toString().trim { it <= ' ' }
if (firstname.isEmpty()) {
userFirstNameWrapper!!.error = "Enter First Name"
userFirstNameWrapper!!.requestFocus()
}
if (lastname.isEmpty()) {
userLastNameWrapper!!.error = "Enter Last Name"
userLastNameWrapper!!.requestFocus()
}
if (email.isEmpty()) {
userEmailWrapper!!.error = "Enter Email"
userEmailWrapper!!.requestFocus()
}
if (password.isEmpty()) {
userPasswordWrapper!!.error = "Enter Password"
userPasswordWrapper!!.requestFocus()
}
if (confpassword.isEmpty()) {
userConfPasswordWrapper!!.error = "Enter Confirm Password"
userConfPasswordWrapper!!.requestFocus()
}
if (password != confpassword) {
userConfPasswordWrapper!!.error = "Password didn't match"
userConfPasswordWrapper!!.requestFocus()
}
if (contactno.isEmpty()) {
userContactNoWrapper!!.error = "Enter Contact No"
userContactNoWrapper!!.requestFocus()
}
[COLOR=#8000ff]uAuth=FirebaseAuth.getInstance()[/COLOR]
fun () {
onStart()
super.onStart()
//Check if user is signed in (non-null) and update UI accordingly
val user = User(firstname, lastname, email, contactno)
FirebaseDatabase.getInstance().getReference("Users")
.child(FirebaseAuth.getInstance().currentUser!!.uid)
var onComplete: Unit
}
if (AuthResult)
uAuth= FirebaseAuth.getInstance()
uAuth!!.createUserWithEmailAndPassword(email, password)
.addOnCompleteListener(OnCompleteListener { AuthResult})
var onComplete: Unit
var task: NonNull; Task<AuthResult?>
(
if (task.isSuccessful()) {
val user = User(firstname, lastname, email, contactno)
FirebaseDatabase.getInstance().getReference("Users")
.child(FirebaseAuth.getInstance().currentUser!!.uid)
.setValue(user)
.addOnCompleteListener(OnCompleteListener<Unit>())
var onComplete: Unit
NonNull
var task: Task<Void?>
(
if (task.IsSuccessful()) Toast.makeText(
this@RegisterActivity,
"User created successfully.",
Toast.LENGTH_LONG.show()
) else
Toast.makeText(
this@RegisterActivity,
task.getException().getMessage(),
Toast.LENGTH_LONG.show()
)
)
} else Toast.makeText(
this@RegisterActivity,
task.getException().getMessage(),
Toast.LENGTH_LONG.show()
)
)
}
}
}
}