Recent content by walker ice

  1. W

    [APP][FREE][5.0+]Notes - A simple secure notebook, check list app for users

    ;)v1.0.0.020201006 publish: 1. Add list sharing function 2. Add note sharing function 3. Support bold, italic, and underline font styles 4. Modify known bugs
  2. W

    [APP][FREE][5.0+]Notes - A simple secure notebook, check list app for users

    Hi friends, Notes is a simple-to-use note and check list app, easy for making your daliy record or check list, reminding you some import event and protecting your privacy. Features: ● Allow users to change font size and background color of note according to their preferences; ● Allow users to...
  3. W

    Anyone using a free VPN on their note 10+?

    setupVpn has a free mode, and work well for me
  4. W

    Why does I see com.android.contacts and com. Oppp launcher

    some apps can get a wake lock event the devices is under idle, them will still work
  5. W

    Share your home screen setups.

    look nice and lovely
  6. W

    How do I uninstall emoji app

    if emoji app is system app, you can't uninstall it but only disable on settings-->app, other wise is a normal app just choose uninstall is ok
  7. W

    how can i play music on spotify and tidal at the same time?

    as Android design an AudioManager is request by one process will cause another process loss audio focus, so it's hard to work two process in the same time
  8. W

    Why is my battery draining so fast?

    you can go to settings-->battery and found out which process is using most power, if not necessary you can uninstall or kill them, if all is normal, maybe the devices is to old and Circuit aging
  9. W

    my phone fall down on floor and then screen disappear

    It should be that the interface cable of the screen is loose, it is estimated that warranty service is required
  10. W

    when are contacts automatically add to favorites

    This is determined by the logic of the phone application, but most of them should be manually clicked by the user to add to my favorite, and automatically added to my favorite by frequency is less
  11. W

    Android app stop after running in background by using foreground service?

    when your app was kill, your notification is still here? you should try to use adb shell dumpsys meminfo to find you packageName is still in the "Foreground" tag, if yes some rom may has logic to clean some process which excussive power consumption, as you service is using gps
  12. W

    Some useful operation by using adb

    Hello everyone! There some useful operation for adb in my weekday job, hope to help you. 1. show all devices connect by adb adb devices 2.select a devices to Excuting an order adb -s deviceid 3.install a app adb install -r <apk path> 4.uninstall a app adb uninstall <packageName> 5.get a...