Better multi tasking on official pie - Samsung Galaxy Tab S3 Guides, News, & Discussion

Ok to make it short and clear, after reading other posts I realize that most tab s3 users are not familiar with "samsung good lock".
Good lock is a bunch of modules to add useful options to samsung devices but unfortunately they're only available in some regions
you can use a free app called "fine lock" from play store to download and manage this modules:
https://play.google.com/store/apps/details?id=yuh.yuh.finelock
just use the provided links in here to download and install the last apks and then run them from fine lock.
disclaimer: I've nothing to do with this app. If you find it useful, Thank the developer or pay for pro version.
the modules I use now are "Multistar" and "task changer" to bring back popup view action, drag and drop for split screen, etc...
feel free to check others yourself.

pooyab said:
Ok to make it short and clear, after reading other posts I realize that most tab s3 users are not familiar with "samsung good lock".
Good lock is a bunch of modules to add useful options to samsung devices but unfortunately they're only available in some regions
you can use a free app called "fine lock" from play store to download and manage this modules:
https://play.google.com/store/apps/details?id=yuh.yuh.finelock
just use the provided links in here to download and install the last apks and then run them from fine lock.
disclaimer: I've nothing to do with this app. If you find it useful, Thank the developer or pay for pro version.
the modules I use now are "Multistar" and "task changer" to bring back popup view action, drag and drop for split screen, etc...
feel free to check others yourself.
Click to expand...
Click to collapse
Great:good:
I only knew "One hand operation" form the Play store.
"Task changer" and "Multistar" are very much needed for Pie.

Related

stock video editor feature??

I goggled and haven't found any discussion regarding this "video editor" thing. There is an edit option when viewing videos. Once I tap on it, it says I'll need to download it. .. but when I click on download nothing happens. have any of you ppl notice this feature and does it work for yall? here are the screenshots:
The stock video editor is not included out of the box. You should be able to download it from the screen you posted a shot of but make sure:
You have an account with Samsung Apps.
You are signed into your account with Samsung Apps (on your phone). You can get to Samsung apps by going to the APK shortcut in the app tray on your phone.
Your "Samsung Push" app is up to date. (Not sure if this is a must, but it can"t hurt)
The app is simply called "Video editor" and it is located in the "Entertainment" section.
It will be nearly 115 MBs.
You can also go to Samsung Apps on your PC and navigate to the Editor, but I am not sure if Samsung Apps works like the play store or not. You might need to do it from you phone.
Good luck.
The problem was that I had disabled Samsung apps and account. Thanks

KODI with - amazon voice search :D (proof of concept)

Hi Guys,
I managed to root my FireTV a few days back, and yesterday decided to look at the voice search to see if I could use it for other things.
After reversing some code, I found the actual voice search is handled by com.amazon.vizzini.apk
The SearchOverlay.class has this piece of code, which calls back to the amazon fireTV UI SearchResultsActivity upon completion with the search result returned as a string.
I replaced the fire TV UI with my own code, which receives the search text, and then sends a JSON rpc to KODI's web interface, and brings KODI to the front after the search is completed.
Here is a video of it in action.
http://youtu.be/hpgKci_gJYY
android studio project
http://uptobox.com/ccykod7zua1l
mirror
http://www107.zippyshare.com/v/mAhl3UuM/file.html
***** I have a FireTV v1 updated to fire os 5 ******
I have no idea if this will work on older versions of software.
To make it work you will require ROOT, and you will have to uninstall or move the existing fireTV amazon UI.
Reason for this is that the vizinni.apk calls back to
localIntent.setComponent(new ComponentName("com.amazon.tv.launcher", "com.amazon.tv.launcher.ui.SearchResultsActivity"));
So your activity has to be in that package, and called SearchResultsActivity.
The only other way to possibly get round this would be to modify the vizinni.apk to call a different package instead, but then voice search wouldn't work on the amazon UI anyway. I wasn't really bothered about the amazon UI working myself which is why I did it the way I did.
I just moved the original system/priv-app/com.amazon.tv.launcher/com.amazon.tv.launcher.apk to /system then installed my code via android studio.
mount -o rw,remount /system
mv /system/priv-app/com.amazon.tv.launcher/com.amazon.tv.launcher.apk /system/
You will also need to change KODI's settings to enable web interface control on port 8080.
On my setup it was .. system.. services.. webserver.. and tick the box that says "Allow control of kodi via http" and make sure the port is set to 8080.
edit: 07/07/2016
I did start work a few months back on an Xposed module (works but not 100%), I was going to add a settings page but I think there was issues with xposed on android version that the fire tv runs on, due to permissions etc.
You can set a prefix in the code (currently hard coded to KODI) so if you say " kodi star wars" it would pass the param of "star wars" to kodi.
If you just say "star wars" without the prefix it would pass this to the normal amazon UI.
If anyone wants to take it further, it's attached on the link below.
http://uptobox.com/ensqll4a7r65
Mick
Thats actually pretty great.
Conventional wisdom was that both voice recognition and response "results packaging" was done server side - and the only return query you could get were preexisting amazon database references - not the result of the initial voice recognition.
I've actually read that multiple places - but as it turns out, no one had bothered reversing the process I guess.
Major props and thank god for overlays containing strings... Finally - that microphone might not be so useless after all..
Next step - implement it to interface with google search. (Weather in ...)
edit: Actually - there are three interesting usecases I can think of on top of my head...
1. Launch other Apps (maybe even with "fixed Keywords (App 1 f.e. would work edit: "Number 1" delivers better results. )" if App names arent known to Amazon) - so thats text>launcher app - see if sphinx02 has any interest in coding that as part of Firestarter..
2. google search (Whats the weather in.. ) text>google search app (if possible)
3. direct text input as seen in the POC video
edit 4. forward to Amazon - not to "break" their implementation
This could be realized by a quick 4 way select screen (just confirm with the direction button) after you select the string in the overlay.
great find and implementation. would love see more expansion as above post mentions. Are you planning to share fire tv UI code?
I was playing with voice search strings and found that Amazon tends to strip out "Google" in front of search queries -so instead of "Google how is the Weather tomorrow" only "How is the weather tomorrow" will get returned.
But - Alexa as a trigger word will be returned fine, so - I vote for using "Alexa" as a trigger word to forward all search queries to the google search app.
Ok - maybe not - but conceptually, this would be a great "work of art".
An even better idea than Harklekinrains' would be to check the foreground app and do different things based on that. For example, if Kodi is open it could send the intent to Kodi. If the Fire TV launcher is open it could fall back to default functionality, etc. Simulating keystrokes could also cover 99% of the other applications. I'm excited for this. It really makes the Fire TV so much less of a novelty.
I've just updated the original post with a copy of the android studio project, and a few more details.
Mick
Great mate,thanks! gonna check it out soon!
One question (as im not firm with intents and stuff): aint there a possibility to listen for intents sent to the amazon ui and catch them? Personally, i dont care too much about it right now as im using nothing but kodi, but maybe some day when wanting to use prime or similar stuff?
dafunkydan said:
Great mate,thanks! gonna check it out soon!
One question (as im not firm with intents and stuff): aint there a possibility to listen for intents sent to the amazon ui and catch them? Personally, i dont care too much about it right now as im using nothing but kodi, but maybe some day when wanting to use prime or similar stuff?
Click to expand...
Click to collapse
I don't think so as the actual code in the vinizzi apk is as follows:
Intent localIntent = new Intent();
localIntent.setComponent(new ComponentName("com.amazon.tv.launcher", "com.amazon.tv.launcher.ui.SearchResultsActivity"));
localIntent.putExtra("identifier", null);
localIntent.addFlags(402653184);
localIntent.putExtra("term", str);
localIntent.putExtra("text", str);
localIntent.putExtra("source", "VOICE");
localContext.startActivity(localIntent);
So basically when it receives the voice search response from amazon's server, it's starting the activity com.amazon.tv.launcher.ui.SearchResultsActivity from package com.amazon.tv.launcher
Mick
Integrating the search attempt based on the previous foreground app would mean that "voice search" could never "initate a new attempt". This would prevent the "lets just ask google, or lets launch an app - impulse use" of the feature. Still - in the long term it might turn out to be the right approach - f.e. if
"People tend to use the the google search only lets say "half a dozen times", and in the majority of cases just want text input in Kodi" Also - without having a select screen with "four (dont make it too many) predefined "use options"" discoverability is pretty non existent. People would have to read readmes to find out which interactions are supported.
Also Amazon wants you to "be able to always reach the Amazon content search from anywhere" - so, political implications.
Also - each time a new app would want to integrate the voice to text feature - they would have to contact the devs of this project - if you dont use "just text input" as a default in the "use the previously open app as an indicator of intent" approach. So make sure you default to "just text input" in that case. (Amazon launcher > forward query to Amazon (do not break functionality), ....)
Dont implement it as a mixed approach though as "Kodi is open most of the time" probably for most people - and the intent (message) gets "confusing".
--
What you probably shouldnt do - regardless, is to use "trigger words" as an "indicator of intent" - because Amazon can start blocking them. "Number 1" is probably generic enough so they wont try to block that - but in principal, they can. Also Amazons "voice to text" engine is optimized for "short phrases" - the longer your input query gets the more prone to errors their results become. Leave the actual "voice input" as "natural" as possible (dont embed logic there). Imho.
I'm in the USA and uptobox.com is not available in our country.
I want to give the source a look and see what I can do to contribute.
Can you put it on github or somewhere else?
Much appreciated.
kratosjohn said:
I'm in the USA and uptobox.com is not available in our country.
I want to give the source a look and see what I can do to contribute.
Can you put it on github or somewhere else?
Much appreciated.
Click to expand...
Click to collapse
I've just uploaded it to zippyshare too. Link added to original post.
Mick
It would be nice if this could be generic way of entering text in any app, similar to the FTV Remote App that has keyboard support. I am surprised Amazon has not done this already. If you are in a text field voice search would fill in the text, else it can continue with normal Alexa functionality letting you " always reach the Amazon content search from anywhere". Should be an easy solution for Amazon to implement, not sure if it could be added with the progress here, and it would really make the voice control so much more useful.
Hey Mick, as im still very exited about that (so frustating to enter searchphrases with a dpad...), i thought about what your great find could develop to. I hope u dont get me wrong, as i unfortunatly cant contribute any programming (if u need something made with tasker let me know ), its not that i want to demand anything - rather share my thoughts or ideas...
- I think its a good thought not to 'blow it up' by adding many keywords, make it more complicated, and avoid amzn to lock features down. even if it may be an abstract fear. I think with a well-structured menu in kodi, all apps one will need to start are just 2-3 clicks away.
- if i got it right, xposed could hook into every module and alter it, right? so basically it should be possible to avoid to exchange the amazon ui and/or alter the vizinni.apk,but just modify the SearchOverlay.class? wouldnt it be (on top) the most convenient way to decide wether one is on e.g. Amazon Prime, or on kodi, and either hand over the result to the original module, or hand it over to kodi?
So, please understand my post as a mixture between sugestions and questions, not as a demanding 'please make it how i want it asap'. Im really excited about your finding, appreciate your sharing, and want to contribute what i can do - unfortunatly its rather thoughts and suggestions. Cheers mate!
Great Work !!! I totally understand this is for amazon Fire products only. My question is would we be able to port for generic Android TV box like nVidia Shield which also has mic capability and comes with root support.
Good job @is0-mick it's great to see you accomplish something that Netflix doesn't even want to be bother with on their app.
harlekinrains said:
No you dont understand. You havent even read or understood the first posting - but you have bought another device and now want others to move in your direction on your behalf.
Click to expand...
Click to collapse
Seriously mate if XDA bothers you so much, you need to take a break from it for your own sanity!
fach1708 said:
Seriously mate if XDA bothers you so much, you need to take a break from it for your own sanity!
Click to expand...
Click to collapse
No, I really don't think he needs to take break, his argument is completely understandable. This is not a Shield forum (btw before we make judgements, I own both devices). We need to get this fixed for one device, before even mentioning whether other devices are an option.
is0-mick said:
To make it work you will require ROOT, and you will have to uninstall or move the existing fireTV amazon UI.
Reason for this is that the vizinni.apk calls back to
localIntent.setComponent(new ComponentName("com.amazon.tv.launcher", "com.amazon.tv.launcher.ui.SearchResultsActivity"));
So your activity has to be in that package, and called SearchResultsActivity.
The only other way to possibly get round this would be to modify the vizinni.apk to call a different package instead, but then voice search wouldn't work on the amazon UI anyway. I wasn't really bothered about the amazon UI working myself which is why I did it the way I did.
Click to expand...
Click to collapse
Is it not usefull for this to create a xposed mod? I thought xposed was made for this...
Perhaps you should talk with rbox in his thread about a integration into version 1.5 of his mods, look here.
is0-mick said:
I just moved the original system/priv-app/com.amazon.tv.launcher/com.amazon.tv.launcher.apk to /system then installed my code via android studio.
mount -o rw,remount /system
mv /system/priv-app/com.amazon.tv.launcher/com.amazon.tv.launcher.apk /system/
Click to expand...
Click to collapse
So does that mean, while you are using your proof-of-concept you can not use the normal Launcher-UI?
Really great your work! I hope we got more
Sadly I am with my FireTV-Stick (hardware-Rooted-superSU) and my FireTV box gen1 (hardware-Rooted-superSU+custom-recovery+unlocked-bl)on the old FW. I wait for custom roms.
Greetings by Idijt
EDIT:
I forgot to ask you something. Did you got the kind of search-request back?
Can you see if amazon-voice-rgn knows if it is a app or a video or a moviestar?
This looks pretty cool since I don't like typing the name of the movie in the search box... now I can just speak it.
As a novice I have one question, You wrote:
is0-mick said:
I just moved the original system/priv-app/com.amazon.tv.launcher/com.amazon.tv.launcher.apk to /system
Mick
Click to expand...
Click to collapse
The code I downloaded was in .RAR format not .apk. Do I need to covert it to .apk or rename it to .apk before replacing the original?
I've not rooted my device yet so I haven't looked at the file structure, but I'd be willing to root to get this feature. OR is the adding of this code better done by someone other than a novice?
Thanks
carpenter940 said:
The code I downloaded was in .RAR format not .apk. Do I need to covert it to .apk or rename it to .apk before replacing the original?
Click to expand...
Click to collapse
It's the source code. You have to compile it and create the apk with AndroidStudio.

Share 100 Promotion codes of Package Disabler (SamSung) for all XDA members

Hi bro,
"App Package Disabler (Samsung)" was suspended (blocked) by Google from April 8, 2016 for some reasons
We can't enable it to Google Play again
So we decide to develop a new application, it called "Package Disabler Samsung +" with same features
But better than ever with Material design, improve high performance and very easy to use
Description:
- Package Disabler Samsung is the best app forever help you disable any packages (Installed, Bloatware and System) on your Samsung devices WITHOUT ROOT
- One tap to disable or enable all Bloatware (SHealth, GearVR, Instagram...)
- Package Disabler Samsung will disable packages and make them disappear, save your RAM usage, improve your battery life. All disabled package is marked unavailable from running and updating.
- Package Disabler Samsung can work without Root permission, works well with almost Root device.
- Disable Gear VR service, you can use your virtual reality headset with Cardboard apps. Gear VR application will not be auto launched until you enable them again
Note:
- It may take [one minute] to active and update from Server for the first time run
- This app sometimes not work well on some Custom Rom or Rooted devices
- Enable all package you disabled by other Package Disabler apps before using this app
- Be careful to disable Critical (Sytem) packages, unless you are sure that it safe to disable
I sent all 100 new promotion codes for all members below at April 21,2016
So use new promotion code to download new Package Disabler Samsung+ free
Using promo code to free download paid app
Go Goolge Play link -> "Buy" -> "Continues" -> "Redeem" -> input promo code and install free
If you like this app, don't forget rate us 5-star, Thanks :highfive:
This campaign is over
Hope to see you in next campaign soon
Thank for the app and the feedback offered to users. Very useful for unrooted devices.
Sent from my SM-G930F using Tapatalk
Sure.. why not? I'll give it a try.
Awesome! Would love to give it a go, thanks!
pls, give me one.
thanks
Thanks for the opportunity to try out the app
Too good to be true or not ?
I'd give it a whirl and provide feedback
I`d love to play with this app. If there are free keys still available, I would be happy to give it a test drive.
I would love to try it out. Plz send one my way
Thanks!! Would love to give this a try! Cheers.
okay.. promo code took a few minutes before it started working.
VERY first impressions: These days, Android users are paranoid...
The "first time setup" screen explains why it needs Admin/KLMS rights, but then claims it needs to connect to a server to "get data." Being it asks for device admin rights, it would be nice if there was a better explanation than a vague "get data." What kind of data? Is it getting the payload for a virus? Is it getting a listing of possible bloatware? License data? Calculations for determining that next lunar eclipse? What?
I'm not likely to give something "admin" rights unless I know what kind of data it's going to pull from some server someplace.
Yes please. In for one
Sent from my SM-G930V using XDA-Developers mobile app
I'd like to give it a try.
I sent code for all members below
We still have more than 80 promotion code free
If anyone need, just comment
Thanks
hoaivu1508 said:
I sent code for all members below
We still have more than 80 promotion code free
If any want need, just comment
Thanks
Click to expand...
Click to collapse
Good stuff!
garyd9 said:
okay.. promo code took a few minutes before it started working.
VERY first impressions: These days, Android users are paranoid...
The "first time setup" screen explains why it needs Admin/KLMS rights, but then claims it needs to connect to a server to "get data." Being it asks for device admin rights, it would be nice if there was a better explanation than a vague "get data." What kind of data? Is it getting the payload for a virus? Is it getting a listing of possible bloatware? License data? Calculations for determining that next lunar eclipse? What?
I'm not likely to give something "admin" rights unless I know what kind of data it's going to pull from some server someplace.
Click to expand...
Click to collapse
Exactly, we need Internet to check License data, but sometimes It take a long time (maybe 1 minute) so we decide pop up a notify "Getting Data from server"
We guarantee that we Never collect any Data of users, and Never payload for Virus
You can check by use any Internet Checker Tool like Internet Speed Meter https://play.google.com/store/apps/details?id=com.kaikaisoft.internetmeter
Nothing was downloaded, nothing sent, we sure 100%
If everyone have a question about this app, contact us at [email protected]
If you enjoy this app, please rate us 5 star on Google Play, It will help us alot :highfive:
Thanks
nice idea! gonna be sending feedback aswell, especially for apps which are acting as a "go-around" for rooting
hoaivu1508 said:
Exactly, we need Internet to check License data, but sometimes It take a long time (maybe 1 minute) so we decide pop up a notify "Getting Data from server"
Click to expand...
Click to collapse
I'd strongly suggest to change the "get data" text to be more specific. Perhaps something like:
"After [Device Administration] is enabled, this application will need to connect to a Licensing Server to verify licensing data. Therefore, please ensure Internet Connectivity is enabled."
(BTW, I'm posting on this thread instead of via private email so that others can also comment on the feedback. As this is XDA-Developers, there will be other devs who might have other or better ways to word things.)
I'm in!
Me please
Verizon Galaxy S6 that I would love to disable a few Apps with
Thanks in advance!
hoaivu1508 said:
We have a campaign, share 100 promotion codes of App Package Disabler (SamSung) for all XDA members
Free paid app for you
App Package Disabler (SamSung)
- App & Package Disabler help you disable (uninstall, remove) any unwanted applications or packages that pre-installed (installed, system app) with your device.
- Simple and easy to use with one tap to disable & enable all the packages (applications). This application can works WITHOUT ROOT Permission.
- App & Package Disabler will disable application(package) and make them disappear. Disabled application can not be uninstalled or updated via Google Play.
- You can use your Virtual Reality headset with Cardboard apps without launching the default Gear VR package by temporary disable Samsung Gear VR app and services
Google Play
https://play.google.com/store/apps/details?id=com.kaikaisoft.pakagedisable
If you want to experience, to use this app, please comment below
We will check the comment in the end of everday and send promotion code to you as soon as possible until it's over
Thanks
:highfive:
Click to expand...
Click to collapse

Debloater Tool

I'm not responsible if you screw your Device up.
Just Read, Read, Read and then read somemore.
I used this to disable those unwanted BloatWare Apps on my VZW Note 7
An Excellent Tool......
It has worked for me in the Past on other devices and hasn't let me down yet.
The list I used as an example for my vzw note 7 was from the galaxy s6.. The Tool will also freeze all the Knox apps if you check them,.
The List is a Model to go by but does not mean all the same apps will freeze on vzw note 7(Experiment with list and don't freeze all apps at once) .... Very Nice,.......
I had not updated with the Latest Verizon Update but was getting the prompt to do so.
Another great thing is you can freeze the sdm.apk and you don't get the consistent Software Update alerts or an accidental clicking of the Update prompt, either way by selecting the sdm.apk it freezes it. I'm gonna hold out with hopes on root and if it never comes and I decide to I will go back in the debloater tool and unfreeze the sdm.apk....
Thanks again GatesJunior for the Debloater Tool and natypes for the use of your list(may be a newer list out there, this worked for me) it's greatly appreciated from all of us overhere in the Verizon Note 7 Community.......
1st Link is the Bloatware Removal Tool
( In our Case a Disabler Tool).
2nd Link is the List I Used as reference, it came from the S6........
http://forum.xda-developers.com/android/software/debloater-remove-carrier-bloat-t2998294
http://forum.xda-developers.com/verizon-galaxy-s6/general/disabled-list-t3087463
Page 2 post #19 shows the actual file name of the apk, worked better for me.
Credit for Debloater goes to Gatesjunior
Credit for Apps to Freeze by natypes and bobbarker
What did you choose to block/de-bloat?
Great tool, been using it since he released it. It allows you to disable MORE than that Package Disabler Pro does because Samsung can't censor him like they can with PDP.
It gives you LESS info on the items, so you better know what you're disabling.
I posted in the Debloater thread, but thought given there might be something specific to the Verizon Note 7, I'd ask my question here as well.
I used Debloater tool (and have successfully in the past with other Note Phones) on my Note 7, but was not able to get the Software update to disappear (like it the past). Typically I just froze the sdm apk and was done. This time, the Note 7 showed 2 SDM apk's (this one and SDM Viewer I believe) and after freezing them, it did not remove the Software update category on the phone.
I wonder if it has anything to do with taking the update issued the day I got my phone?
Any thoughts?
A safe list of Bloatware to disable with EZ Package Disabler
I have attached my bloatware list.
It's not the best list. I hope you can help me make it better.
anybody make a complete set on what they disabled specifically for the note 7 yet?
Coming from someone who extensively tested package disablers on the note 5....they do more harm than good. Do not use them. Instead, manually go to your application manager and disable the apps. When it asks to "restore to previous version" hit yes, and it will disable it instead of install an older version.
The only reason to use a disabler is if you have a faulty app/disable updates or to disable the gear service to use google or other third party VR apps that need it.
ars0n said:
Coming from someone who extensively tested package disablers on the note 5....they do more harm than good. Do not use them. Instead, manually go to your application manager and disable the apps. When it asks to "restore to previous version" hit yes, and it will disable it instead of install an older version.
The only reason to use a disabler is if you have a faulty app/disable updates or to disable the gear service to use google or other third party VR apps that need it.
Click to expand...
Click to collapse
The issue with that is the inability to disable things like Knox and VVM and background services that don't have app icons, don't show up in the application manager, and are of no use to the end user but still take up CPU cycles and background data. Package disablers are definitely not something to just run through hacking and slashing away without knowing what it might affect, but you'll have to explain why you say they "do more harm than good" if someone is taking the proper precautions and not disabling things the system needs to function correctly.
Thats the problem, most people dont know what to disable and what not too. This takes a lot of testing.. I know, I tested quite a bit on my note 5, enough to know that even disabling programs like knox and VZN has 0 effect on battery and in some cases causes space to be eaten up by logs and the caches of these disabled programs that build up but cant clear out, because, they are disabled. There is a huge 100+ page note 5 topic about package disabler and how it does more "harm" than good. If you have the time read up on it! Me and another guy Mr.Mike spent almost a year on it..
ars0n said:
Thats the problem, most people dont know what to disable and what not too. This takes a lot of testing.. I know, I tested quite a bit on my note 5, enough to know that even disabling programs like knox and VZN has 0 effect on battery and in some cases causes space to be eaten up by logs and the caches of these disabled programs that build up but cant clear out, because, they are disabled. There is a huge 100+ page note 5 topic about package disabler and how it does more "harm" than good. If you have the time read up on it! Me and another guy Mr.Mike spent almost a year on it..
Click to expand...
Click to collapse
I skipped the Note 5 and stuck with my Note 4 until now, so I missed that whole thread. I'll definitely check it out, thank you.
Any idea if this will work for package disabler pro?
Samzebian said:
Any idea if this will work for package disabler pro?
Click to expand...
Click to collapse
I'm pretty sure that's what it is for.
Sent from my SM-N930P using Tapatalk
Cbass15 said:
I'm pretty sure that's what it is for.
Click to expand...
Click to collapse
Well I only ask because the op states this is for ez package disabler and that's made by a different Dev than ownsge disabler pro
ricoyakuza said:
I have attached my bloatware list.
It's not the best list. I hope you can help me make it better.
Click to expand...
Click to collapse
Why do you call this a "safe list"? It looks like you disable a lot of core functionality with this including NFC. A better title would be "my list of disabled packaged" and mention that you will lose multiple features if you do this...
wooow. note 7 apps on roms

Samsung One UI navigation buttons

Does anyone know where I can find or download the navigation buttons of the Galaxy S10 o One UI? I couldn't find any... Badly need it for the theme that I am creating for my phone.?
ermond012 said:
Does anyone know where I can find or download the navigation buttons of the Galaxy S10 o One UI? I couldn't find any... Badly need it for the theme that I am creating for my phone.
Click to expand...
Click to collapse
Download good lock in galaxy store its an app available in samsung mobiles only it will help you customize ur phone. Within the app look for NavStar i will allow you to change the nav bar icons.
here is a video showing you how it works: https://www.youtube.com/watch?v=5wH26KM1elg
also f its not available in your country like me in France, i found a solution on reddit which is working:
"use a VPN (select country where Good Lock is available, example US, South Korea), remove your sim tray completely. Go to apps and force close Galaxy Apps. Then clear cache and clear data for Galaxy Apps. Next open Galaxy apps and you'll see it picks up as you were doing a fresh install (marketing info permission requested,etc).You'll have Good Lock available for download (search it in Galaxy Apps). Once you download it, open it and download the stuff you want: edge light+, sound assistant, one hand, etc. When everything is downloaded, access each one of them and do your setup as you like: one hand, edge light effects. Finally re-insert your sim-tray back. Close VPN connection. Galaxy Apps will return automatically to your country specific and you'll have Good Lock available. When updates are available for Routines, one hand, etc, you either repeat the steps above: remove sim tray + vpn and the updates will download (you open Good Lock and open each app inside it and you'll notice the update available) or sideload the updates from apk mirror ?"
credits to u/infractoru
link : https://www.reddit.com/r/GalaxyNote8/comments/9zlosn/good_lock_exynos_version_not_available/
Thread closed by OP request

Categories

Resources