Posts

Showing posts from February, 2018

Issue with USB, Android does it not recognized and explorer freezes

Image
I have this issue with my Xiaomi A1 with Android Oreo If you try access to your USB OTG and when you plug it and click OK on this pop-up window: Maybe your app will freeze and you couldn't access to your USB, like that I tried with es explorer non-pro version and it got this info (the app freeze also): To solve it, just choose Cancel instead of OK when you insert your USB. Wait until the USB starts to blink (around 25 seconds) and try to access to it again. Enjoy it!

How to fix Android when developer options are not available for this user

Image
I have an Android One with Oreo version and suddenly my Android rebooted and after that it started to behave strangely: 1) Notification section doesn't work. I can't see notifications from my apps and the arrow and the screw icon to settings access don't work. 2) As I can't access to the notification area, I can't enable Use USB to Transfer Files to access to my phone memory. 3) I can't access to developer mode (I before active it with a lot of taps over Build number). Clicking on developer options just shows developer options are not available to this user. 4) I can't update or install the apps on google play. They freeze on Download pending... message 5) Home and Switch buttons don't work. They light up and vibrate when I tap them but they do nothing. This issue is apparently related to a deconfiguration of user accounts. To fix it, you need re-setup the users. As you can't access to the user manager (you are in guest mode

How to run Helium Desktop on Linux

If you want backup your Android apps, the best application to do it is Helium. To run it, you need execute an application on your Desktop wget http://download.clockworkmod.com/carbon/carbon-linux.tgz tar xzvf carbon-linux.tgz  cd linux ./run.sh .    You will see this error:                                error: device not found adb server is out of date. killing... README adb run.sh daemon started successfully README adb run.sh error: device not found Or this: /data/app/com.koushikdutta.backup-1/base.apk CLASSPATH=/data/app/com.koushikdutta.backup-1/base.apk app_process /system/bin com.koushikdutta.shellproxy.ShellRunner2  & exit hammerhead:/ $ ^[[24;80R If you see, the bash script has an issue. To solve it, execute the following lines on your terminal: pkg=$(adb shell pm path com.koushikdutta.backup)  pkg=$(echo $pkg | cut -d : -f 2 | sed s/\\r//g) echo $pkg  adb shell << EOF CLASSPATH=$pkg app_process /system/bin com.koushikdutta.shellproxy.Shel