Tag : android

I hope you are well. I have a problem, I recently bought a Pixel 8 Pro phone on Facebook marketplace, but unfortunately when I opened the phone I realised that they sold me a lost phone that is blacklisted. I have tried everything, I messaged the provider and all sorts of places but I could not do anything and now I have a phone that I paid a lot of money for and it’s not working. The only option I have is to change the IMEI number so I can at least use the phone. With many tutorials and videos, I finally manage to root the phone with magisk, but I do not know what to do to change the IMEI. I know it’s not a legal action, but in my situation I think it’s not illegal to he..

Read more

import android.os.Bundle; import android.util.TypedValue; import android.view.View; import android.widget.Button; import android.widget.SeekBar; import android.widget.TextView; import androidx.activity.EdgeToEdge; import androidx.appcompat.app.AppCompatActivity; import androidx.core.graphics.Insets; import androidx.core.view.ViewCompat; import androidx.core.view.WindowInsetsCompat; public class MainActivity extends AppCompatActivity { public Button button; public TextView napis; public SeekBar slider; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); EdgeToEdge.enable(this); setContentView(R.layout.activity_main); ViewCompat.setOnApplyWindowInsetsListener(findViewById(R.id.main), (v, insets) -> { Insets systemBars = insets.getInsets(WindowInsetsCompat.Type.systemBars()); ..

Read more