Speed Up any Android Phone or Tablet

Поделиться
HTML-код
  • Опубликовано: 16 июл 2024
  • Speed Up any Android Phone or Tablet
    This video goes over using all free and open-source tools to remove unwanted apps from any android device. Cheatsheet: www.christitus.com/debloat-an...
    Timestamps:
    00:00 Introduction
    00:56 Cheatsheet
    01:40 Install ADB Tools
    02:27 Setup ADB Debugging on Device
    03:56 ADB Command Examples
    07:38 Uninstall App Demo
    10:49 Conclusion
    Upcoming Live Streams
    -----------------------
    - Every Tuesday and Friday
    - Future and Past Streams @ / christitustech
    Support My Work
    -----------------
    - Chris Titus Tech Digital Downloads ➜ www.cttstore.com/downloads
    - Product and Service Recommendations ➜ www.christitus.com/recommenda...
    - My RUclips Gear and Computers ➜ www.amazon.com/shop/christitu...
    Other Places to Find Me
    -------------------------
    - Titus Tech Talk ➜ / titustechtalk
    - Twitter ➜ / christitustech
    DISCLAIMER: This video and description contain affiliate links, which means that if you click on one of the product links, I’ll receive a small commission. This helps supports the channel and allows us to continue to make videos like this. Thank you for your support! .
    ►► Digital Downloads ➜ www.cttstore.com
    ►► Reddit ➜ / christitustech
    ►► Titus Tech Talk ➜ / titustechtalk
    ►► Twitch ➜ / christitustech
  • НаукаНаука

Комментарии • 528

  • @ChrisTitusTech
    @ChrisTitusTech  4 года назад +111

    *Couple Things to note:* Cheatsheet - www.christitus.com/debloat-android/
    It is dangerous to remove system apps that you don't see in the app drawer. It can lead to you doing a full system recovery.
    On Non-Rooted phones some applications are installed as root and error with " [DELETE_FAILED_INTERNAL_ERROR]" - type this to bypass: adb shell pm uninstall --user 0
    This will be able to delete most of the apps that you can't do by traditional means even if you don't root your phone. I do this on every android device and clean off a lot of junk I could only disable.

    • @TheGuy-tc8wm
      @TheGuy-tc8wm 4 года назад +4

      I removed my default launcher cause I didnt like it and now my gestures dont work lol.

    • @wolf2k143
      @wolf2k143 4 года назад +1

      "adb devices" is not showing anything, please respond what I should do, I have permission to the phone's folders

    • @vinithp2565
      @vinithp2565 4 года назад +1

      In some of the China's phone(xiaomi, mi etc) they locked bootloader, it may don't work until we unlock bootloader 🙏

    • @zsigmondforis6336
      @zsigmondforis6336 4 года назад +5

      @@chitrakshbhatia You should type the real appname.
      e.g: youtube app real name is com.google.android.youtube
      So to uninstall youtube you should type:
      adb shell pm uninstall --user 0 com.google.android.youtube

    • @ragilmalik
      @ragilmalik 4 года назад +1

      this kinda help but if you don't root your phone, some of the apps will probably be automatically installed soon or at leqst on the next update.
      Root give you access to system partition which has the list of apps the system has to check after booting up. Kinda like windows. You can uninstall it sure, but if it's built into the ROM, you're fucked without rooting.

  • @Jimmy_Jones
    @Jimmy_Jones 4 года назад +273

    Obviously it's Clean Master. The holy grail of all apps. Plagued with ads and requires every permission going.

    • @ChrisTitusTech
      @ChrisTitusTech  4 года назад +112

      Clean Master is bloatware at this point haha. It even bloats your notification drawer.

    • @orestisfraSPDR
      @orestisfraSPDR 4 года назад +28

      @@ChrisTitusTech woooosh..... xD

    • @ChrisTitusTech
      @ChrisTitusTech  4 года назад +92

      @@orestisfraSPDR hehe obligatory response for those that don't get it. You'd be surprised how many people think the solution is to install more apps instead of using official Android tools like this.

    • @orestisfraSPDR
      @orestisfraSPDR 4 года назад +8

      @@ChrisTitusTech Yeah... that is actually sad if you think about it :/

    • @hellomine2849
      @hellomine2849 4 года назад +6

      @@ChrisTitusTech I used clean master in the past because my phone didn't have any apps to clean it :/

  • @DegenerateQuinn
    @DegenerateQuinn 3 года назад +10

    This helped a ton on my old government smartphone. Came pre-installed with a bunch of useless or problematic apps and I was able to get rid of it all! Thanks!

  • @nyannaaurora
    @nyannaaurora 4 года назад +10

    the production value of these videos is great! i also love your voice and this chill setting

  • @glibberglobber9358
    @glibberglobber9358 4 года назад +19

    This is so damn helpful. I've wanted to remove things like gmail and play movies that I don't use for the longest time, but I didn't want to have to root my phone. This is a godsend.

  • @corneldutta
    @corneldutta 4 года назад +16

    Hey Chris.. Big fan of your content! For tech enthusiasts who don't want to go to the lengths of rooting and flashing this is a pretty neat method to get rid of all OEM stock apps.
    However, the bypass mentioned by you for [DELETE_FAILED_INTERNAL_ERROR] needed a little tweak to work on Windows cmd prompt -> adb shell pm uninstall -k --user 0 .
    Thanks again.. you rock!

  • @aaronruiz816
    @aaronruiz816 3 года назад +7

    Thank you so much for this! This is just what I needed. My new S21 is nice and clean thanks to you ❤️

  • @NEWNATURE777
    @NEWNATURE777 3 года назад +4

    Thank you Chris for your support and dedication to all the communities! I'm a new sub to your channel...
    Shalom 👍

  • @AnzanHoshinRoshi
    @AnzanHoshinRoshi 4 года назад +12

    Thank you, Chris. Very useful.

  • @4x4gear33
    @4x4gear33 4 года назад

    Thank you Chris for taking the time to do this.

  • @robert58
    @robert58 4 года назад +5

    This is exactly the video I was looking for, thanks a lot

  • @ronymarques8340
    @ronymarques8340 2 года назад +1

    This video is awesome and helped me a lot. But I need to say two thing for Windows users like me. (1) "grip" just work at Linux. Te proper command line for Windows is the following: "adb shell pm list packages | findstr ". (2) To delete some apps you need to, first, use "adb shell". Then, "adb shell pm uninstall -k --user 0 " as Cornel Dutta mentioned in a comment here.

  • @st2vik422
    @st2vik422 4 года назад +37

    Thanks for the useful tutorial, some of facebook packages I wasnt abble to uninstall with simple command "adb uninstall" I had to use "adb shell pm uninstall --user 0". Hope it helps to somebody with same issues.

  • @TVJAY
    @TVJAY 4 года назад +4

    I just bought an Amazon fire tablet for my wife and can't wait to see your video on it. I would also love to see you install the Google play store on the Amazon Fire tablet.

  • @MartinAhlman
    @MartinAhlman 4 года назад +4

    Looking forward to the debloating of a Kindle Fire! Great stuff!

  • @muhammadfahim8746
    @muhammadfahim8746 4 года назад

    Thank You so much Titus.
    It is so much helpful for every android users.

  • @PS_Tube
    @PS_Tube 4 года назад +1

    Hey thanks Chris. It's really informative piece.

  • @26CT1520
    @26CT1520 3 года назад

    Awesome stuff! Thank you Chris.

  • @Leon_George
    @Leon_George Год назад +1

    Thank you, once again. You are right, the set up process is not very complicated, it's more confusing why other sources don't just describe the process straight away.

  • @JohnLaird7
    @JohnLaird7 Год назад +1

    You're truly a live saver bud. Thank you!

  • @voiceofreason314
    @voiceofreason314 3 года назад

    Needed this! Thank you!

  • @joejoedot
    @joejoedot 3 года назад

    Great bro, its amazing all that stuff, i knew on the bottom of my heart that, there was commands like theese to do thinks like this i guess that there is a lot of much more adb commands to different purposes

  • @davidnickel3949
    @davidnickel3949 4 года назад +1

    thank you for this you just helped me flash my phone to e/OS

  • @mondskiez309
    @mondskiez309 4 года назад +67

    For non-rooted phones, the adb command after shell should be:
    "pm uninstall -k --user 0 com.your.app.name"
    Where com.your.app.name is the package name of the app that you want to uninstall..
    Do remember that since the phone is NOT rooted, the uninstall is merely taking the app out of view of "user 0" space or the standard non-root user..

    • @TennesseeFrank
      @TennesseeFrank 4 года назад +2

      Thank You. It worked like a charm

    • @memooooo715
      @memooooo715 4 года назад +1

      I uninstalled the contact app and dialer and the whatsapp doesnt work and nothing is working regarding to the phone app
      How I reset or restore this package again , please ?

    • @iurcic
      @iurcic 4 года назад +15

      @@memooooo715 you have to travel back in time and tell to ur self not to do that

    • @Bball2
      @Bball2 4 года назад +3

      @@memooooo715 you could install an open source contact and dialer app, you've already fucked it up deleting those if you don't have another app that do the same

    • @741Nikhil
      @741Nikhil 4 года назад +5

      @@memooooo715 reset your phone

  • @jaybrewer6769
    @jaybrewer6769 3 года назад +9

    Dude!! Seriously thank you for this. I had no idea you could do that without rooting. I will note that if you do it on windows, you will leave off the package: and in powershell pipe it our and replace grep with findstr -i when searching for appnames.

    • @kingpretentious8427
      @kingpretentious8427 3 года назад +3

      thank u

    • @jimmaule1388
      @jimmaule1388 Год назад

      Thank you, I am fumbling my way thru this and couldn't figure out what I was doing wrong . Are these dos commands?

  • @Ratteler
    @Ratteler 4 года назад

    This was great. I have a bunch of old phones that I can probably now make use of thanks to this..
    Any chance of a similar guide to rooting a phone?

  • @MK-ni6gs
    @MK-ni6gs 4 года назад

    Top vid! Thank you Chris

  • @isekaiguy69
    @isekaiguy69 3 года назад +1

    Thank you! I have a Samsung note 20 ultra on the way and I plan to debloat! I do have a paid app from the app store that does debloat. However I would much rather do it independently and out of the phone or tablet completely

  • @adamjensen7870
    @adamjensen7870 4 года назад

    Very cool! I'm going to have to do this!

  • @gamegamesoumic
    @gamegamesoumic 4 года назад +1

    Hello there @Chris ! I followed your tutorial to uninstall Facebook from my Samsung A6+ using my Debian 10 Testing. At first I failed, but then I saw your comment. So I tried `adb shell pm uninstall --user 0 com.facebook.REST_OF_THE_NAME` from your comment and viola! Worked like a charm! :D

  • @YannMetalhead
    @YannMetalhead 2 года назад +1

    Great guide.

  • @samuelschwager
    @samuelschwager 4 года назад +8

    Neat! Just bought an Amazon Fire HD 10 tablet. Might debloat it ;)

  • @y2ksw1
    @y2ksw1 4 года назад +1

    I like this already before watching it 😊

  • @George_K1
    @George_K1 4 года назад

    Another Great video...

  • @AlexTabachnyy
    @AlexTabachnyy 3 года назад

    Greatly appreciate it!

  • @GarvitJain_1
    @GarvitJain_1 3 года назад

    Thank you man.😎🤘🤘

  • @731Seba
    @731Seba 4 года назад +1

    Thanks to you and debian, now I degoogled my phone without root

  • @byrontudowr8844
    @byrontudowr8844 4 года назад

    really helpful.

  • @archlinus5066
    @archlinus5066 4 года назад

    3:25 in some types of recovery (like twrp) you can use adb too

  • @Dayzjuniestarz821
    @Dayzjuniestarz821 2 года назад

    love your videos. let us know when you have one for windows 10 (Speed Up any Android Phone or Tablet)

  • @MichaelMaxwell747
    @MichaelMaxwell747 4 года назад

    Thank you!

  • @ironwolf3699
    @ironwolf3699 3 года назад

    Man this is fun. I was testing this on my old samsung 7 edge

  • @raphauy
    @raphauy 4 года назад

    Thank you!!!

  • @d3technovision
    @d3technovision 4 года назад

    good work bro

  • @coonstation
    @coonstation 3 года назад

    Thank You. This is very helpful to me. I took some apps off that I don't use. Play Music is one of those because they stop using the service on this app. I don't read so I took these off as well. Let anyone know that this doesn't remove what inside of the locked system. When you restore your phone like new everything will be put back. You will have to remove those again.

  • @PrimeToolbox
    @PrimeToolbox 2 года назад

    Awesome!

  • @Moskito844
    @Moskito844 4 года назад

    THANK YOU SO MUCH

  • @rfdiego777
    @rfdiego777 2 года назад

    thanks a lot, I also have a samsung and those things are full of bloatware, now it's a lot snappier!

  • @premier69
    @premier69 4 года назад

    since i already have it I'll continue with titanium backup, but this would have been nice to know years back

  • @MrNeuroamante
    @MrNeuroamante 4 года назад

    porque no estaba suscrito antes a este canal??? que barbaridad

  • @adfjasjhf
    @adfjasjhf 4 года назад +1

    This way of removing apps doesn't uninstall the system apps. It just disables them and you can enable them again with some command. If you watch XDA Developers video they also mention this

  • @athurV1
    @athurV1 3 года назад

    Hi Chris , really like your channel, helpful info for debloat , really simple explain , could u pls do an apple iPhone ios debloat version if possible ? And all the best for 2021.

  • @SHREDTILLDEAD
    @SHREDTILLDEAD 4 года назад

    I have a moto x2 that I like alot is there anyway to use adb tools to flash a newer build onto it?

  • @zerok37
    @zerok37 4 года назад +3

    Hey Chris, can you make a tutorial on Android custom ROM? Like, what ROM to use, steps to install a ROM for newbies, how to avoid brick your device, etc?

    • @22stunt45
      @22stunt45 2 года назад

      Buddy there are solo many of these on youtube. Just search for it. Also xda developers will help you tremendously.

  • @GP-MB-Baden-WurttembergDeutsch
    @GP-MB-Baden-WurttembergDeutsch 3 года назад

    This RUclips video is awesome and thank you for the tips.I just can say you know what you doing.I use before Amiga did you use Amiga Computer.I bring up because you bring Linux( I love Fedora). This Video you are very good teacher,I like it.
    Thank you I really appreciate ;)

  • @aliwarisshahsyed8759
    @aliwarisshahsyed8759 3 года назад

    Thank you so very much
    Love from Pakistan

  • @MikeDragon
    @MikeDragon 4 года назад

    Oh God, this is a God-sent thing! However, I could not get Facebook off of my Asus phone. Maybe I am doing something wrong? Maybe need to do it as Superuser? I always get the "Failure [DELETE_FAILED_INTERNAL_ERROR]" error when trying to remove anything Facebook. For that matter, also got the same thing when I tried to remove Instagram.
    EDIT: Nevermind, I just noticed Chris' pinned comment about this error. Problem solved!
    Chris, my good sir. Thank you SO much for these tips! I've finally got rid of the junk without needing to go through the hassle of rooting my phone. I'm so happy, now!

  • @SB-qm5wg
    @SB-qm5wg 4 года назад

    Cool video.

  • @v.6023
    @v.6023 3 года назад

    Hi Chris! thanks for the video! I learned a lot and i made me think about an old problem I have with my galaxy buds and note 9. I would really appreciate if you could help or anybody in anyway, here it comes:
    I have been carrying this problem for 3 years (or about) and the thing is when I install tutu app(that famous chinese app to hack games) or the star wars apk to have the whole star wars theme, the volume of my buds decrease significantly (obviously I don't lower the volume), also last time this happened samsung health app was super glitchy. Of course Samsung only knows how to restore it or reinstall the firmware and nothing more (pretty useless) but I did discovered that it is usually fixed when reinstalling the firmware and applying no backups. Another fix which my girlfriend thought of was rebooting the phone in safe mode and erasing the cache data but it only worked for one day and back to low sound(I tried again but hasn't worked since, though it fixed Samsung Health). This video's method made me this there could be an error being generated in the memory which somehow messes things up inside... and may be possible to fix it without reinstalling firmware?
    If you Chris or anyone could think of a solution I'd really appreciate it!
    Cheers!

  • @pennakira
    @pennakira 4 года назад +8

    thank you for the video. I tried the command on win10 "adb shell pm list packages | grep samsung" and i get 'grep' not recognized.

    • @Bradley-Thomsen
      @Bradley-Thomsen 3 года назад +1

      grep is a linux specific command. You can install the linux commands on windows and that should fix the issue you are running into.

  • @gopikrishnanr576
    @gopikrishnanr576 4 года назад +17

    Can you make a video on installation of open source custom ROM. I know most people don't need that, but I'm using an old phone with Android 7 (still working like a beast) and would like to explore newer version of Android in it.

    • @mohdsaqib4454
      @mohdsaqib4454 4 года назад +1

      which phone are u using actually I also want to use custom rom on my lg stylus 2 plus (android 7)

    • @cosmicpegasis7591
      @cosmicpegasis7591 4 года назад +9

      Mate I don't know if Chris will make a video or not, but search for xda they are kind of your one stop shop for everything android modding related.
      I'm pretty sure you can find at least a dozen videos from there to help you.
      Cheers!

    • @gopikrishnanr576
      @gopikrishnanr576 4 года назад +1

      I use Lenovo P2.

    • @prashantprem1
      @prashantprem1 4 года назад

      @@gopikrishnanr576 XDA

    • @rsseguel
      @rsseguel 3 года назад +2

      By far, Nougat is still the best version of Android. Amazing performance and speed.

  • @XxxcloackndaggerxxX
    @XxxcloackndaggerxxX 4 года назад +1

    Wow I'm so confused, I thought we were going to debloat my Samsung Android smartphone S 20! You were talking about things right from the beginning I had just no idea!

  • @darshaim
    @darshaim 4 года назад

    which desktop environment are you using?

  • @andrewpanrucker
    @andrewpanrucker 4 года назад

    Thanks pal, I wanna remove Samsung Bixby and samsung account, also I've replaced lots of apps i can uninstall with some from Fdroid that you mention in another video

  • @SevenPure
    @SevenPure 4 года назад

    New to all of this - is it possible to use ADB to do the following: Debloat, DeGoogle, install MicroG and retain full S-Pen functionality on a Samsung Note device?

  • @sergiomc
    @sergiomc 3 года назад

    Hello, what Linux distribution are you using in this video?

  • @piotrart
    @piotrart 3 года назад

    Chris, please tell me what console do you use in the movie?

  • @Minbedstekanal
    @Minbedstekanal 4 года назад

    Awesome tool (y)

  • @enoughmuskspam2490
    @enoughmuskspam2490 4 года назад +1

    What about a custom rom install guide Chris?

  • @ariloguecom
    @ariloguecom 4 года назад

    is it possible to uninstall gapps and disable google services with this method? sametime is it possible to disable telemetry ?

  • @hasiburrahmanjitu2734
    @hasiburrahmanjitu2734 4 года назад +1

    Please do an updated video on "How to Remove Viruses From Your Computer (2020 version)"
    Previous method still works well though....

  • @usbmusiccollection
    @usbmusiccollection 3 года назад

    i like your this videos , but one problem that I need to know, if you can delete or unistall system application, can you convert the update applications in internal memory to a system without root application with the adb command ?

  • @Knan_L
    @Knan_L 2 года назад

    Because of this i like the Motorola Smartphone at least until the model i have it was one of the systems without trash inside just the google things, i don't like samsung it has a lot of apps that you don't need and can't delete, well now we can, thank you for the video o/

  • @AndreKochDre
    @AndreKochDre 2 года назад

    Nice! But I get Failure on the uninstall packagename command; what do I type in on the shell uninstall command?

  • @michadybczak4862
    @michadybczak4862 4 года назад

    Awesome! I thought that we can remove those uninstallable apps only in rooted phone. It begs the question, if we uninstall something that we shouldn't, can we install it again? If so, make a video! Thanks.

  • @gauravmitra2187
    @gauravmitra2187 3 года назад

    If you are de-bloating and it shows some error as in Failed and it does not show success after typing the command adb uninstall then only you can use this command :
    adb shell pm uninstall --user 0 then the package name

  • @wv1swlamatswl523
    @wv1swlamatswl523 4 года назад

    I just purchased an Android pre-pay Orbic Wonder which will only ever be used at home on wifi. I had plugged it into my Linux Mint computer intending to just let it charge via USB, and was unexpectedly surprised that it popped up an Android icon on the screen. I can open up and transfer files between the two. Didn't expect that at all. But there are a few apps on the phone I'd certainly like to get rid of. Thanks for uploading this. Will try to see if I can make this work.

    • @wv1swlamatswl523
      @wv1swlamatswl523 3 года назад

      6 months later, I can get the phone on the laptop screen with scrcpy.. but durned if I can do anything with adb commands in the terminal. Just doesn't do anything for me.

  • @Etinyreels
    @Etinyreels 10 месяцев назад

    GOOD VIDEO

  • @madborne3372
    @madborne3372 4 года назад

    Can you make a tutorial on how to setup Rclone on android properly. There are non on youtube for android. Great vid :3

  • @tomschallschauer
    @tomschallschauer 4 года назад

    is it save to removoe all the huawei service stuff? Anything i should not touch if iam a noob?

  • @angelchiriboga3904
    @angelchiriboga3904 2 года назад

    i need to get chocolatey first. correct?
    which version for windows 10 proffesional?

  • @daishoarch8116
    @daishoarch8116 4 года назад

    Nice vid

  • @kc4qq1023
    @kc4qq1023 4 года назад

    Phillip Cyr
    when I entered "choco adb devices" in power shell, command returned "RF8N32K3NRL unauthorized". The phone's serial number + unauthorized. What did I do wrong. Phone is Samsung Galaxy A10 E.

  • @istvanbarta
    @istvanbarta 4 года назад

    Any backup ideas before somebody try it? What if I deleted something which is need to operation the phone?

  • @TheMcMonster
    @TheMcMonster 2 года назад

    Can uninstalling any packages affect the ability to do a hard reset? I'm contemplating buying a Samsung phone and I would like to first uninstall all the Samsung bloatware. Will I still be able to hard reset and start from scratch if something breaks? Asking just in case.

  • @beskeptic
    @beskeptic 4 года назад

    Help please! That didnt work well for me... most 'adb uninstall com.packagename' just got 'Failure' response and a lot of apps wasnt listed on the 'adb shell pm list packages'. I think i need to root the phone to uninstall those apps

  • @JohnGuillorykf5qeo
    @JohnGuillorykf5qeo 3 года назад

    I'd love to use adb on my lg stylo 6, unfortunately, it shows nothing when I type adb devices. I tried installing the device driver, and there is no option for selecting charge mode / file transfer / etc.

  • @wofogg2822
    @wofogg2822 4 года назад

    you can use this install command for Google play Services on Huawei Phone ? if its work with this adb shell, is realy simple to do this wow

  • @RichardLBartlett
    @RichardLBartlett 4 года назад

    I've got an old Samsung 7.0 Tab that is slow as all hell. I've rooted it and tried a myriad of custom android builds that purport to be minimalist but to no avail. I've even tried rolling back to factory settings. I'm starting to think it's not just a software issue. Is it possible there is something going on internally and the system is throttling to compensate for heat? I just can't rationalize how rolling the software back has no effect on a device with no moving parts. I suppose one day I'll consider the tablet a loss either way and try cracking it open and cleaning it / replacing thermal paste.

  • @betterteen
    @betterteen Год назад

    can you make a video for android 4.4.2 or it would be hard for you to get an android kitkat. I see it doesn't work on kitkat. tried it myself

  • @naeemjako
    @naeemjako 4 года назад

    Is it possible to give an app a root acces using this amd command such as Performance Tweaker which requires root access, without rooting your phone, that will be amazing

  • @dalebednell
    @dalebednell 3 года назад

    Hi Chris,
    is there any way of ridding myself of google play services, google go, google assistant go,?

  • @MrGrape-fd4mz
    @MrGrape-fd4mz 4 года назад

    Both operating systems, whether it be Android or iOS have pros and cons. Android has freedom and customizability and iOS has the long term reliability where it will keep getting updates.

  • @BR7Fan71
    @BR7Fan71 3 года назад

    being i used W10 de-bloat script,is installing choc necessary,or is it a different version?

  • @drucrue
    @drucrue 4 года назад

    Chris will you do a video on flashing an android tablet? My daughter wiped everything off hers when she tried doing a factory reset. She thought she knew what she was doing but didn't. Shes 12 and her friends told her to select option to wi0e out everything instead of factory reset. Took it to a local repair shop and they charge more than I paid for the tablet to reinstall a operating system back on it.

  • @donttempt
    @donttempt 3 года назад

    Very important question. If this is in boot loader mode won't it erase data or factory restore the device?

  • @MyMorningDose
    @MyMorningDose 4 года назад +2

    Hey Chris, what do you think about just completely wiping my fire tablet and installing a Linux phone distribution like plasma mobile or even Tizem? I really hate my fire tablet, it’s bloated with so much extra crap and really slow. Do you think that would work and be a good choice or should I just keep my fire tablet as is?
    Thanks!

    • @ChrisTitusTech
      @ChrisTitusTech  4 года назад +2

      Fire Tablets have a bootloader that is very difficult to write to. In most instances it requires a hardware bypass of jumping the CLK on the mainboard to GND and then writing the boot on startup. It is not trivial and not recommended. If you are comfortable with plastic pry tools and don't mind the possibility of bricking the device, you can do it. However, for most, I'd recommend just deleting a lot of the ad packages from amazon and swaping the launcher to Nova.

    • @wishusknight3009
      @wishusknight3009 4 года назад

      Simply cleaning up the services on them makes quite a difference.

    • @KenDanieli
      @KenDanieli 2 года назад +1

      He has a debloat Fire tablet video and ADB tool. I used it and got rid of all the Amazon bloat, reinstalled the Google Play set, and removed startup ads. So far my tablet is much much better. Before that my very new Fire HD 10 had very little installed on it, mostly empty, and it was very slow due to the bloat.

  • @vanhetgoor
    @vanhetgoor 4 года назад

    I have a Sony Mobile telephone but it is full of shitty crappy bugger that I could not use it anymore. All completely useless bloatware was already switched off but it keeps on occupying the memory. I hope I can use this ADB to clean up the phone.

  • @therealcrazymazey
    @therealcrazymazey 3 года назад

    New to this where and how to get this to work = choco install adb ?????

  • @petewhite511
    @petewhite511 3 года назад

    Hi Chris, does bootloader have to be unlocked for this?
    I have an older Acer A1 830 tablet that is android. Bootloader is locked..?