problem deleting bloat with titanium backup on nook hd - Nook HD, HD+ Q&A, Help & Troubleshooting

i have rooted and installed the various zips and such for unknown sources. if i try to freeze or delete the bloatware such as, crosswords, facebook and such they show back up under the launcher and redownload after a reboot. i am using Nova launcher but it does it regardless. any reason why they don't stay frozen or stay deleted? spotify in another.

bckrupps said:
i have rooted and installed the various zips and such for unknown sources. if i try to freeze or delete the bloatware such as, crosswords, facebook and such they show back up under the launcher and redownload after a reboot. i am using Nova launcher but it does it regardless. any reason why they don't stay frozen or stay deleted? spotify in another.
Click to expand...
Click to collapse
Profile > manage content > app > untick
btw, u can use a app call autostarts, force to stop all BN stock app to auto start, after a reboot, u can freeze them by titanium backup

i unticked the box and my nook hangs on boot at 99%. what should i do now?

bckrupps said:
i unticked the box and my nook hangs on boot at 99%. what should i do now?
Click to expand...
Click to collapse
Which box did you untick?
Sent from my Nook HD+ running CM10.1 on emmc.

bckrupps said:
i unticked the box and my nook hangs on boot at 99%. what should i do now?
Click to expand...
Click to collapse
Detail step advised by B&N support :
Please be advised that you can disable the NOOK apps on your NOOK HD+, kinldy follow below steps to disable NOOK apps on your NOOK device:
- Tap on top left hand corner on Home page,
- Tap on Edit profile,
- Tap on the profile currently you are using,
- Tap on "Manage content",
- Tap onte "Apps",
- Kindly un check the NOOK app which you want to disable the NOOK app.
- Tap on the option "Save".
---------- Post added at 11:08 AM ---------- Previous post was at 10:29 AM ----------
I got my NookHD+ on Thursday night, here is what I changed on my NookHD+
U can freeze following package by titanium backup
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Disbale following app to auto start with system
Leave following app to auto start with system
What my NookHD+ home screen look like, full screen enabled
install Full!screen+ for "back"/"recent app"/"notifications button, u may need to replace a png file to fix "black words on grey color notifications bar"
Cleanup complete, about 500MB free ram after task kill, pls don't freeze "DeviceManagerService", otherwise u will have SystemUI error and wallpaper will become black screen
VPN supported
Lock Screen with Password
Change CPU governor to "hotplug", it will shutdown CPU1 for powersaving when system is idle
u can check the CPU status by following shell script, copy and paste and save as "/data/data/cpu.sh", chmod 777
execute as root via adb shell, Ctrl +C to break
i=1
while ((1))
do
echo $i
echo "CPU Governor mode : `ls /sys/devices/system/cpu/cpufreq`"
echo "Online CPU = `cat /sys/devices/system/cpu/online`"
echo "CPU 0 : `cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_cur_freq` hz"
echo "CPU 1 : `cat /sys/devices/system/cpu/cpu1/cpufreq/cpuinfo_cur_freq` hz"
i=$(($i+1))
sleep 1
done
When CPU1 is shutdown, it will show
CPU Governor mode : hotplug
Online CPU = 0
CPU 0 : 396800 hz
cat: can't open '/sys/devices/system/cpu/cpu1/cpufreq/cpuinfo_cur_freq': No such file or directory
CPU 1 : hz
if cpu 1 is online, u will see "Online CPU = 0-1" and CPU 1 : 396800hz (or more)

Related

[Script][Rom Toolbox Pro][Busybox] Setup AOKP 4.1 to OC GPU on boot

So with the new AOKP builds you can set the gpu speed on the fly. It resets after rebooting and must be set again after each boot.
Well, I used ROM Toolbox Pro to create a script and run that script on boot.
cmenard said:
On the fly GPU Overclocking
Value 0 = 307MHz
Value 1 = 384MHz
Value 2 = 512MHz
Click to expand...
Click to collapse
I wanted mine set to 1 after each boot. You can modify the script to run at the faster "2" if you want. I don't recommend this though as it will use more battery and cause the tab to run hotter.
Open Rom Toolbox and go to Scripter in the Tools section.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Create a script and name it anything you want. Add what you see in the image and make it look just like this below (its also at the bottom of this post for easy copy/paste)
Save the script and you should see it in the list.
Now tap on the script in the list and select "Set at boot" when the menu comes up so that it runs on every boot.
You should see the icon on the right of the script name like shown below. This indicates that its set to run on boot.
Reboot and enjoy a faster tablet.
Code:
#!/system/bin/sh
busybox mount -o remount,rw /system
busybox echo "1" > /sys/devices/system/cpu/cpu0/cpufreq/gpu_oc
busybox mount -o remount,ro /system
I must be the only person who likes a fast tablet.
I think CM or AOKP always has init.d support.
This works no matter what. I don't need to edit init every time I flash a new build. Which is quite often.
scottx . said:
This works no matter what. I don't need to edit init every time I flash a new build. Which is quite often.
Click to expand...
Click to collapse
how come my tablet p3110, doesn't save the change in gpu_oc? it stays at 0 always.
done the romtoolbox and root explorer method to no avail.
mtencarguez said:
how come my tablet p3110, doesn't save the change in gpu_oc? it stays at 0 always.
done the romtoolbox and root explorer method to no avail.
Click to expand...
Click to collapse
..solved it by flashing gapps 20120726..:laugh:
scottx . said:
So with the new AOKP builds you can set the gpu speed on the fly. It resets after rebooting and must be set again after each boot.
Well, I used ROM Toolbox Pro to create a script and run that script on boot.
I wanted mine set to 1 after each boot. You can modify the script to run at the faster "2" if you want. I don't recommend this though as it will use more battery and cause the tab to run hotter.
Open Rom Toolbox and go to Scripter in the Tools section.
Create a script and name it anything you want. Add what you see in the image and make it look just like this below (its also at the bottom of this post for easy copy/paste)
Save the script and you should see it in the list.
Now tap on the script in the list and select "Set at boot" when the menu comes up so that it runs on every boot.
You should see the icon on the right of the script name like shown below. This indicates that its set to run on boot.
Reboot and enjoy a faster tablet.
Code:
#!/system/bin/sh
busybox mount -o remount,rw /system
busybox echo "1" > /sys/devices/system/cpu/cpu0/cpufreq/gpu_oc
busybox mount -o remount,ro /system
Click to expand...
Click to collapse
ooo thank you
Thanks for your work on this.. I know it is for a different device, but I tried the code on my NS and it did improve my benchmarks?? No issues or stability problems.. I am using it as an init.d script, thanks..
i think overclock is not good for this tablet?

*[4.1+]*[MOD]BATTERY TWeaKS [get the best out your Battery]

{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Requirements
REQUIREMENTS
Most importantly your phone
init.d support
Android 4.1+
what's in init.d scripts?
4.1 cpufreq_governor
21cpufreq_governor script sets the governor that contorls the CPU's thresholds and sampling_rates
4.2 cpufreq_screenstate_scaling
31cpufreq_screenstate_scaling script defines the governor values and decides the actions based on the phone's state - conservative, ondeman, lazy, awake, sleep modes. I've changed lots of values from Calk's original script to save more battery power thru this script. As indicated in Calk's original thread for FD02, this script would not run if you have already installed some CPU control apps something like OC Widget, Quick Clock, SETCPU, and Android OC.
4.3 tweaks_kobridge
41tweaks_kobridge script has almost everything in it to improve the network speed, sdcard tweaks, other battery saving tweaks, VM management, Kernel, wifi tweaks, etc. For some of the values in here, there are some overlaps with build.prop tweaks. So, if you do not apply the tweaks to the build.prop file, many tweaks would still work.
4.4 zipalign
zipalign is an archive alignment tool introduced first time with 1.6 Android SDK (software development kit). It optimizes the way an Android application package (APK) is packaged. Doing so enables the Android operating system to interact with the application more efficiently, and hence has the potential to make the application and overall the whole system much faster. Execution time is minimized for zipaligned applications, resulting is lesser amount of RAM consumption when running the APK.
If less number of applications with an unaligned home application, you’d see slower application launch times. This is the best case scenario. For a worst case scenario, having a number of unaligned applications will result in the system repeatedly starting and killing processes, struggling with lags and huge battery drain.
4.5 Wifi Sleep Wait timer
What this tweak does is, it controls the time until wifi sleeps after the screen turned off. By default, it's 15 minutes. So, even you turned off the screen, by default, phone will wait for 15 minutes and then turn off the wifi. By using this tweak, you will have the control over wifi idle time until wifi sleeps.​
credits
me
kobridge
iossux
Reserved for GB and ICS tweaks
Tested On Carbon & SJB
how to use?
THEKING said:
Tested On Carbon & SJB
Click to expand...
Click to collapse
have to flash it thru CWM? and then wt about wipes?
.
wasim9283 said:
have to flash it thru CWM? and then wt about wipes?
Click to expand...
Click to collapse
Flash it through CMW & no wipes required
THEKING said:
Flash it through CMW & no wipes required
Click to expand...
Click to collapse
is that we need to delete all the files in the init.d folder first then only flash with CWM? OR just flash through CWM only and no need to delete the files in init.d?
direct
WaterMelon90 said:
is that we need to delete all the files in the init.d folder first then only flash with CWM? OR just flash through CWM only and no need to delete the files in init.d?
Click to expand...
Click to collapse
directly flash it :good::good:
4.2.2 loopboot kernel lupus :crying: how remove tweak please:crying:
phones were standing at the boot screen.
nova_vn said:
phones were standing at the boot screen.
Click to expand...
Click to collapse
Flash rom again with clean install
Sent from my Xperia Live with Walkman using xda premium
aromaFM
nova_vn said:
4.2.2 loopboot kernel lupus :crying: how remove tweak please:crying:
Click to expand...
Click to collapse
use aroma file manager and delete all files in init.d folder
gauravj said:
Tested On Carbon & SJB
Click to expand...
Click to collapse
you mean ROM carbon KK?

[Q] Hearthstone M7

Tryed many versions, but it keeps crashing.. are there some one fan of this cardgame like me who actually make it work on our devices?
AlexVendettA said:
Tryed many versions, but it keeps crashing.. are there some one fan of this cardgame like me who actually make it work on our devices?
Click to expand...
Click to collapse
@AlexVendettA
How to install and play HearthStone on the HTC One M7​
Prerequisites:
Your phone must be rooted
Your phone must use the DALVIK runtime (will not work on ART)
Your phone must be on Android 4.0 to 4.4.4 (will not work on 5.0+ because 5.0+ use ART)
Procedure:
Download and install the Xposed Framework. Launch it and grant SU privileges to Xposed when prompted to.
Download and install the App Settings module for Xposed
Activate "App Settings" module in Xposed Installer app (Xposed Installer app --> Modules ---> check box) then reboot the phone (if you have an advanced power menu, a "hot-reboot" is enough)
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Make sure to enable "Unknown sources in settings --> Security --> Uknown sources (allow installation of apps from unknown source)
install HearthStone apk from here but do not launch it yet, just install it.
MD5: 3402f837e588abaae774f3cfc83a0efb
Go back in the Xposed Installer app --> Modules ---> App Settings ---> HearthStone (com.blizzard.wttcg.hearthstone) ---> set DPI to 216, set Screen (dp) to 1000*1600, enable xlarge resolution.
Deactivate HTC power saver mode and (for better performance) enable High Performance mode: Settings --> Developer options --> High performance mode
Launch hearthstone, the app will download additional data (around 500 Mb)
enter your battle.net account name and password
Play the game!
w8ting for it <3
Version without root
This version runs without root.
Very easy. Runs on Note 2 without problems.
Instructions can be found in readme.txt file.
http://goo.gl/ah8tbu
Hope I could help.
Muff(in) said:
This version runs without root.
Very easy. Runs on Note 2 without problems.
Instructions can be found in readme.txt file.
http://goo.gl/ah8tbu
Hope I could help.
Click to expand...
Click to collapse
and what is this file exactly?
alray said:
and what is this file exactly?
Click to expand...
Click to collapse
In this zip there are:
apk (without screen size restriction)
oob Files (main and update)
readme (containing install instructions)
Muff(in) said:
In this zip there are:
apk (without screen size restriction)
oob Files (main and update)
readme (containing install instructions)
Click to expand...
Click to collapse
You know that Blizzard is very strict about modifying their game? Even if its only a variable about screen size... They could ban your battle.net account. I remember a similar case when ppl modded SC2 to be able to play on multi-screens setup... Blizzard detected it and they got banned.
And its also in Blizzard's terms of use:
The license granted to you in Section 1 is subject to the limitations set forth in Sections 1 and 2 (collectively, the “License Limitations”). Any use of the Service or any Game in violation of the License Limitations will be regarded as a breach of this Agreement and an infringement of Blizzard’s copyrights in and to the Service and/or Game. You agree that you will not, under any circumstances:
use cheats, automation software (bots), hacks, mods or any other unauthorized third-party software designed to modify the Service, any Game or any Game experience;
(...)
modify or cause to be modified any files that are a part of any Game or the Service in any way not expressly authorized by Blizzard;
(...)
Click to expand...
Click to collapse
So for this reason, I highly suggest you and everyone to use the official hearthstone app and make the necessary modification to your phone (e.g spoofing your screen size) instead of modding the game to remove the screen size restriction. :angel:
Anyway thanks for sharing , this might be easier but this is not the best solution imo.
1) I'm pretty sure the 3rd party download is to get past the fact that google play doesn't offer it yet.
2) The xposed mod works by spoofing the phone information. It does not modify the game.

PLS HELP

So, I damaged the screen and when the background is white the phone does not show the image, when the theme is black you can use it normaly and you can see everything. Then I reset the phone to factory settings and now I can't go through the android activation process because the theme is white. How do I solve that, is there any ROM that is black or is there some other solution?
bera95 said:
So, I damaged the screen and when the background is white the phone does not show the image, when the theme is black you can use it normaly and you can see everything. Then I reset the phone to factory settings and now I can't go through the android activation process because the theme is white. How do I solve that, is there any ROM that is black or is there some other solution?
Click to expand...
Click to collapse
U can flash a rom with the options to skip the initial setup, I'm sure I seen that options in Deluxe Rom
Install the Deluxe Rom There is an option to skip the initial setup.
DeluxeROM v32 [N950F/G955F/G950F] [DUG6] [PIE] [AROMA] [ROMCONTROL] [+KERNEL] [FINAL]
# 1 - Introduction # 2 - ROM features # 3 - Kernel features # 4 - ROM / Kernel links # 5 - Sources and thanks # 6 - FAQ and Telegram support # 1 - Introduction Hi! Welcome to Android Pie DeluxeROM® for exynos8895! This ROM is compatible with...
forum.xda-developers.com
Thanks but how can I enable that option? Or how can I skip the initial setup because i can not see anything on the "first" initial setup screen. I can't find anything about that, how to skip it?
This is the option, (shown in the picture)
but unfortunately there is one step (white screen)
Deluxe Rom
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
bera95 said:
Thanks but how can I enable that option? Or how can I skip the initial setup because i can not see anything on the "first" initial setup screen. I can't find anything about that, how to skip it?
Click to expand...
Click to collapse
Sir go download and flash Deluxe Rom while in the installation page in TWRP you will find the an option to skip initial setup make sure to check that and when you reboot into system u will find that initial setup was skipped, turn on dark mode as you want
Oiik said:
This is the option, (shown in the picture)
but unfortunately there is one step (white screen)
Deluxe Rom
View attachment 5160219
Click to expand...
Click to collapse
I remember that the idea of this is not to install the initial wizard.apk to skip it so if he can open the file manager in TWRP he can go to the directory of this app and delete it and reboot. I just can remember exactly where it is lmao
Oiik said:
This is the option, (shown in the picture)
but unfortunately there is one step (white screen)
Deluxe Rom
View attachment 5160219
Click to expand...
Click to collapse
Wow thanks!
Do you maybe have a screenshot of that step with a white screen, so I could press the button without a picture on thescreen?
This is the only option after installing this Deluxe Rom
Press option 1
then option 2
That's all there is to it, Your phone will work immediately
.
(I don't know english very well)
Oiik said:
This is the only option after installing this Deluxe Rom
Press option 1
then option 2
That's all there is to it, Your phone will work immediately
.
(I don't know english very well)
View attachment 5167777
Click to expand...
Click to collapse
Thank you soo much! You helped me.

Question There is a way to check running services and cached processes?

On another phone with Android Oreo (8) I have this entry under Developer options, for see the list of running services and cached processes:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
But on Redmi Note 10 Pro with Android 11 I no longer see this option: is gone? Is elsewhere? There is an app for this scope?
Are you able to view all the running services with this command?
Code:
adb shell dumpsys activity services
Miui has no such option though aosp android 11 has that
I use this https://github.com/MuntashirAkon/AppManager
[email protected] said:
I use this https://github.com/MuntashirAkon/AppManager
Click to expand...
Click to collapse
When i click on List options > Running apps, it only show itself, not all the other running apps; I miss somethin'?
EDIT:
I mean this:
miravision said:
Are you able to view all the running services with this command?
Code:
adb shell dumpsys activity services
Click to expand...
Click to collapse
Sure, but in Termux, the list is not easily readable.
Mister_Dave said:
When i click on List options > Running apps, it only show itself, not all the other running apps; I miss somethin'?
EDIT:
I mean this:
View attachment 5445807
Click to expand...
Click to collapse
Launch the app > click 3 dots at top right corner > running apps.
This list option (the one in your screenshot) shows only foreground apps
[email protected] said:
Launch the app > click 3 dots at top right corner > running apps.
This list option (the one in your screenshot) shows only foreground apps
Click to expand...
Click to collapse
Indeed.
Anyway: if I open the "Security app", and then I click "boost speed", there I can see all running apps (foreground and background user applications and system services); so AppManager is not able to achieve the same? There is another app able to do this?
For me is overkill, open the Security App everytime for only check running apps and services.
Send a screenshot of all the background bloat generally running on your phone so others here can also know what keeps eating their battery
You can also run an automation that will work like greenify which will kill all bloat services at regular intervals and on screen lock
Mister_Dave said:
Indeed.
Anyway: if I open the "Security app", and then I click "boost speed", there I can see all running apps (foreground and background user applications and system services); so AppManager is not able to achieve the same? There is another app able to do this?
For me is overkill, open the Security App everytime for only check running apps and services.
Click to expand...
Click to collapse
Isn't this showing all the foreground & background apps? Probably you haven't seen or you don't want to see?
[email protected] said:
Isn't this showing all the foreground & background apps? Probably you haven't seen or you don't want to see?
Click to expand...
Click to collapse
It only shows what I reported in the screenshot:
https://forum.xda-developers.com/attachments/screenshot_2021-10-31-13-19-36-636_io-github-muntashirakon-appmanager-jpg.5445807/
Anyway the developer of AppManager told me to execute the command
Code:
pm grant io.github.muntashirakon.AppManager android.permission.DUMP
But seems that there is a bug about:
"Running apps" doesn't show running apps, but only AppManager itself · Issue #612 · MuntashirAkon/AppManager
Redmi Note 10 Pro, MIUI 12.5.4.0, Android 11. Issue: When i click on List options > Running apps, only AppManager itself is showed as running application, nothing else appears there, why? If I open...
github.com
miravision said:
background bloat
Click to expand...
Click to collapse
I already removed bloat, also by using shell scripts with
Code:
pm disable-user --user 0
or
Code:
am force-stop
to stop background processes.
But this thread is about to have an app to easily see all active processes.
Mister_Dave said:
It only shows what I reported in the screenshot:
https://forum.xda-developers.com/attachments/screenshot_2021-10-31-13-19-36-636_io-github-muntashirakon-appmanager-jpg.5445807/
Anyway the developer of AppManager told me to execute the command
Code:
pm grant io.github.muntashirakon.AppManager android.permission.DUMP
But seems that there is a bug about:
"Running apps" doesn't show running apps, but only AppManager itself · Issue #612 · MuntashirAkon/AppManager
Redmi Note 10 Pro, MIUI 12.5.4.0, Android 11. Issue: When i click on List options > Running apps, only AppManager itself is showed as running application, nothing else appears there, why? If I open...
github.com
Click to expand...
Click to collapse
Ah.. because your device was non-rooted apologies..
[email protected] said:
Ah.. because your device was non-rooted apologies..
Click to expand...
Click to collapse
Don't worry
[email protected] said:
Ah.. because your device was non-rooted apologies..
Click to expand...
Click to collapse
As I reported on Github:
I followed these instructions: https://muntashirakon.github.io/App...-tcp.html#_4-3-enable-adb-mode-on-app-manager
And now AppManager works as expected.
Just go and install https://play.google.com/store/apps/details?id=rk.android.app.shortcutmaker
and launch an intent with
action = android.intent.action.MAIN
package name = com.android.settings
Class name = com.android.settings.SubSettings
And add an Extras with
key = :settings:show_fragment
and value = com.android.settings.applications.RunningServices
Save it and and launch the intent by tapping on
Try this Shortcut
Note = If setting crashes then try to update your phone.
You can also use an adb command to launch running service in xiaomi phones
adb shell am start -n com.android.settings/com.android.settings.SubSettings -e :settings:show_fragment com.android.settings.applications.RunningServices

Categories

Resources