• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Help Bricked Samsung Tab S5e Tablet - Cant boot into recovery/bootloader

Hello,

I have an error screen on my tablet whenever I turn it on or plug it in. It shows the below message:
"<!>

Visit this link on another device:
g.co/ABH"

I can't load up the device or access any boot menus by using any power and volume key combos - it just brings me back to the error screen. Same screen if I plug into my laptop or charger.

My pc also doesn't recognise the device when I plug it in despite download the drivers for it from the samsung website. Does anyone have any suggestions?

[Free][Game] Violence 2

Hi everyone,

Just wanted to promote our new game Violence 2!
https://play.google.com/store/apps/details?id=magsoft.se.violence2

The game is in public beta and is a [Action][Adventure][2D] game.
Think Doom meets Boulder Dash with some unique elements. Smooth and responsive touch controls.
Violence 2 is free to play, no ads, no permissions. Has three persistent IAP:s for extra boost.

screen1.png

screen3.png

screen2.png


Thanks!
/magsoft.se

Help Xbox One Controller lag with bluetooth

Hi everybody,

I just got a Samsung Galaxy Tab A 10.1 2019 (Android 9.0), installed retroarch and connected my Xbox One controller via Bluetooth.

I noticed an input lag, every 2-3 seconds the tablet doesn't get immediately the inputs, it seems to hang and then it will process them really fast. It happens in every application.

I have recorded a video but I don't know how to post here.

Can you tell me if it's an hardware problem? Thanks.

How do I actually use OpenGL ES 3.2 for android?

I want to use version 3.2 so i put this in my manifest xml:
uses-feature android:glEsVersion=“0x00030002” android:required=“true”

However it still seems to be using version 3.0, because I get prints on the console that look like this:
D/EGL_emulation: eglMakeCurrent: 0xea022050: ver 3 0 (tinfo 0xea36cfb0)

Also my shader with “#version 320 es” doesn’t compile, I get an error:
ERROR: 0:1: ‘320’ : version number not supported

What am I missing here?

How to clean Android ....

The question sounds stupid?
Somehow.
I was reading for hours now everything in the forum and couldn't find what I'm looking for.

What happend?

Samsung Tablet 10.1 T580 32GB, Android 8.1 (newest update), bought approx 1 year ago.
SD Card with 128GB.
And I get anoyd with permanent messages I have more as 82% RAM used.
I uninstalled like mad everything I found I don't need.
Cleaned again and again whatever I could and found and with every cleaner recommended.
At the end ...... 82% RAM is used.
Now I was pi..... sorry, not happy and I have done today a factory reset and installed everything new.
And ...... I checked it again not to say something wrong ..... the usage from my RAM is gone down from 82% to ..... 12% .......
I'm sitting here with a stupid face and don't know what to say.
I learned once if I uninstalled a apps it's clean gone.
Do I miss something?

How do you clean proper Android?

And why is there such a big difference between 82% and 12%?

How do I uninstall a app right?

How do I get a USB stick with an adapter to work with an Android phone (rather than a tablet)?

I have a USB stick that lights up when it is plugged in. I have attached it to laptops and tablets (Androids via USB adapters), and it lights up and works well. When I attach it to cell phones (through the same adapter that I do with tablets), it does not light up. Is there a setting to enable the Android phone to give power to the attached devices (the way Android tablets do)?

Json error: Value <br of type java.lang.String cannot be converted to JSONObject

java code
Code:
btn_log.setOnClickListener(new View.OnClickListener(){
    @Override
    public void onClick(View v) {

        final String username=tv_usuario.getText().toString();
        final String password=tv_password.getText().toString();
//51
        Response.Listener<String> responseListener = new Response.Listener<String>() {
            @Override
            public void onResponse(String response) {
                try {
//55
                    JSONObject jsonResponse = new JSONObject(response);
                    boolean success = jsonResponse.getBoolean("success");
                    if(success){
                        String name = jsonResponse.getString("name");
                        int age = jsonResponse.getInt("age");

                        Intent intent = new Intent(MainActivity.this, Usuario.class);
                        intent.putExtra("name", name);
                        intent.putExtra("username", username);
                        intent.putExtra("age", age);
                        intent.putExtra("password", password);

                        MainActivity.this.startActivity(intent);


                    }else{
                        AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
                        builder.setMessage("Error Login")
                                .setNegativeButton("Retry",null)
                                .create().show();
                    }
                } catch (JSONException e) {
                    e.printStackTrace();
                }
            }
        };
        LoginRequest loginRequest = new LoginRequest(username, password, responseListener);
        RequestQueue queue = Volley.newRequestQueue(MainActivity.this);
        queue.add(loginRequest);
    }
});

Login
Code:
public class LoginRequest extends StringRequest {
    private static final String LOGIN_REQUEST_URL="http://localhost/Login.php";
    private Map<String,String> params;
    public LoginRequest(String username,String password, Response.Listener<String> listener){
        super(Request.Method.POST, LOGIN_REQUEST_URL,listener, null);
        params = new HashMap<>();
        params.put("username", username);
        params.put("password", password);
    }

    @Override
    public Map<String, String> getParams() {
        return params;
    }

}

here is my php
Code:
hp
    $con = mysqli_connect("localhost", "root", "", "usuarios");

    $username = $_POST["username"];
    $password = $_POST["password"];

    $statement = mysqli_prepare($con, "SELECT * FROM user WHERE username = ? AND password = ?");
    mysqli_stmt_bind_param($statement, "ss", $username, $password);
    mysqli_stmt_execute($statement);

    mysqli_stmt_stone_result($statement);
    mysqli_stmt_bind_result($statement, $userID, $name, $username, $password, $age);

    $response = array();
    $response["success"] = false;

    while(mysqli_stmt_fetch($statement)){
        $response["success"] = true;
        $response["name"] = $name;
        $response["age"] = $age;
        $response["username"]  = $username;
        $response["password"] = $password;
    }

    echo json_encode($response);

?>

Logcat view
Code:
W/System.err: org.json.JSONException: Value <br of type java.lang.String cannot be converted to JSONObject
W/System.err:     at org.json.JSON.typeMismatch(JSON.java:111)
        at org.json.JSONObject.<init>(JSONObject.java:163)
W/System.err:     at org.json.JSONObject.<init>(JSONObject.java:176)
        at com.example.avance.MainActivity$2$1.onResponse(MainActivity.java:55)
        at com.example.avance.MainActivity$2$1.onResponse(MainActivity.java:51)
        at com.android.volley.toolbox.StringRequest.deliverResponse(StringRequest.java:82)
W/System.err:     at com.android.volley.toolbox.StringRequest.deliverResponse(StringRequest.java:29)
        at com.android.volley.ExecutorDelivery$ResponseDeliveryRunnable.run(ExecutorDelivery.java:102)
W/System.err:     at android.os.Handler.handleCallback(Handler.java:789)
        at android.os.Handler.dispatchMessage(Handler.java:98)
        at android.os.Looper.loop(Looper.java:164)
W/System.err:     at android.app.ActivityThread.main(ActivityThread.java:6944)
        at java.lang.reflect.Method.invoke(Native Method)
        at com.android.internal.os.Zygote$MethodAndArgsCaller.run(Zygote.java:327)
W/System.err:     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1374)

Mock location

The fake GPS didn't work on a phone application. There was a pop up message that said "Your location appears to have been mocked. Please exit and refresh your location". Also on another screen it says "GPS Disabled" GPS is required to punch. Please enable GPS in your phone settings. Does anyone have any ideas how to overcome this issue please? Thank you.

Help audio stops while watching video

When playing video (Youtube, Netflix, Prime) the audio stops after 1 minute (sometimes exactly with Youtube) to 1:30 but the video continues. Android 5.1.1, ATT model with no cell service, started 24 hours ago, the only app update listed yesterday was for Android system webview. I have updated all apps, rebooted, turned off power saving mode and turned off Juice Defender. Audio only apps like Amazon Music and Google Play work fine. Thank You!

PS5 is coming.....are you getting it?????

so i am currently watching the PS5 event that was live streamed earlier today.


so far the titles alone makes me want to get it at launch.

just curious if anybody here plans on getting one?

i have not finished the event yet. they have not revealed the actual console yet. i just saw a snipet of the controller. i have purposely stayed away from all of the rumors and leaked info about the console.

......so are you?

HouseTunes 2d platformer

Annoy your Uncle Brian by beating him to the Jukebox and turning up the volume

Make your way to the Jukebox before Uncle Brian. He hates all music, and if he reaches it before you, the JukeBox gets smashed.
When a coin is ejected from a smashed JukeBox, you have 10 seconds to pick it up to continue to the next house.
Play and collect coins by beating your other music hating relatives to move from house to house, annoying your whole family!

https://play.google.com/store/apps/details?id=com.clan47.HouseTunes

Reset Without Internet

The wifi connection on my Tab 2 no longer works at all. A remedy I've received from multiple sources is to reset to factory. If only I could. Whenever I try, it wants to login to my Samsung account, which it can't do without an Internet connection. It just spins and spins. Same when I try to just delete the account. Any suggestions?

An app solves a specific issue

I don't know about everyone else, but the Health Check for the LG V40 drives me crazy. I like that it tells which app's have large caches that need clearing. But clearing them is tedious and takes a while.
I've searched Google for an app that would clear all the caches at once, but so far no luck. Well today I discovered an app that I all ready use does exactly that. And it works.
The app is called Cx File Explorer. I've gone through a few file explorer apps and maybe the one you use can do the same. But this one solves my specific issue with the LG Health Check app.
BTW: I have nothing to gain if you use this app.

Filter

Back
Top Bottom