Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

(HTTPLog)-Static: isSBSettingEnabled false error and app is closing

I looked this up quite a bit and so far what I gathered is that this is a Samsung issue that involves the HttpUrlConnection not being able to work on a Samsung for some reason. So how do I go about fixing this. I could not understand what the other people have said to do to fix this. The app runs perfectly on a emulator but dies on both Samsung phones I have for testing. One of the samsongs is a S4 active Android 5.0.1 API 21

I am using the same http calls to download other data and that works just fine. It is just when I try to access a login page that it won't even go to it. I don't think that there is anything wrong with my code because it works on the emulator just fine.

This is what the output error is giving me Thank for any help with this.

W/InstanceID/Rpc: Found 10063
E/ViewSystem: ViewRootImpl #2 Surface is not valid.
D/AbsListView: Get MotionRecognitionManager
I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
I/System.out: (HTTPLog)-Static: isShipBuild true
/System.out: (HTTPLog)-Thread-35911-714863967: SmartBonding Enabling is false, 
    SHIP_BUILD is true, log to file is false, DBG is false
/System.out: (HTTPLog)-Static: isSBSettingEnabled false
like image 550
MNM Avatar asked Mar 13 '23 16:03

MNM


1 Answers

Ok i found out what went wrong. I was using a shared preference that got corrupted when I uninstalled it from the device and reinstalled it. Then I would send the wrong stored values to the loginpage which would think it was right and then send it along its merry way not caring. Stupid login page. Just goes to show you you can't always rely on the logcat for all your needs. Thank for anyone who looked at this.

like image 120
MNM Avatar answered Apr 06 '23 06:04

MNM