[APP][MOD][CM9] Messaging app with modified smileys - Galaxy Note GT-N7000 Themes and Apps

So I got tired of the same old android smileys in the messaging app in stock CM9 and decided to replace them with something more colourful and cheerful. Attached apk is the result of that! Please see screen shots for better idea. Tested working on latest June 12th CM9 nightly build, should work in other builds as well, unless some code breaks the Mms.apk file in future updates.
Instructions -
Push the attached apk to root/system/app using Xplore or Root explorer or any other file manager of your choice and set permissions to 644 mode. Reboot the phone, and enjoy!
As always, MAKE A BACKUP. I'm not responsible for anything that happens to your phone! Use at your own risk.

Related

[THEME][CM6.1 NIGHTLY] EvoHybrid

This theme is based on the iNexus theme and several other themes and theme elements. All credit goes to the individuals that have created them, I simply took what I liked and merge them all in one.
NOTE: I have attached the apks that have been modified. If an experienced dev can turn this into a flashable zip that would be great.
Features:
- themed pop-up menu icons
- fully themed notification bar icons
- themed power notification widget icons
- skinned pop-up windows
- skinned dialer
- some other visual enhancements
Installation:
Nandroid before flashing or installing anything.
Use adb to push the files to your favorite CM6.1 Nightly
adb remount
adb push contacts.apk system/app
adb push vending.apk system/app
adb push accountandsyncsettings.apk system/app
adb push framework-res.apk system/framework
reboot immediately
Unzip the iNexusColorBar to sdcard/cmtheme
then go Settings>CyanogenMod Settings>User Interface>Tweaks and extras>Select a theme>and choose the iNexusColorBar
reboot again to see all changes
I hope this works.
Can you use root explorer
Sent from my PC36100 using XDA App
Crossrocker said:
Can you use root explorer
Sent from my PC36100 using XDA App
Click to expand...
Click to collapse
Though unfortunate, system apps usually have to be pushed to the phone through adb for them to function correctly.
Attached is a flashable version of the framework-res.apk. I would exercise caution when flashing this though. The framework has changed several times in the last few nightlies. That being said, if this theme was created on a recent build, then it will probably only work with that specific build because of the changes to the framework. Just a thought. Make a backup and you will be fine.

[REQ] Desire Default Live Wallpaper

I've searched and I can't find it so I wonder it any one can help, I've just installed a Sense 4.0 ICS ROM but I really miss the default bokeh live wallpaper that came on the Desire by default, it was on the Sensation originally but it appears to have been dropped for the newest version of Sense. Does anyone know where I can get it for my newly updated Sensation?
I'm also looking for it... There's a bunch of bokeh look alike LWs but I want the original that came with my sensation.
If nobody has it would anyone know how to get it from old gingerbread Rom and port it to ics??
I use this one?
http://www.youtube.com/watch?v=Urj5GW9AQF4
Thanks for the link but I'm a fan of the original... I managed to pull the apk from an ics rom running sense 3.6 the only problem is that on roms with sense 4 the apk doesn't install. Any ideas on how to get it to work?
Use Root Explorer or ES File Manager's root mode and push the apk to /system/app/
Then, change the permissions to match the permissions of all the other apks there, I believe it's RW R R, but just match it to the others. To change permissions in Root Explorer, hold your finger on the file and hit Permissions or whatever. Not sure if ES can do it, but it probably can.
After it's in /system/app and the permissions are edited, reboot and it should show up in the Live Wallpaper list.
Edit: If that doesn't work, look up the APK signer. https://play.google.com/store/apps/...1bGwsMSwyLDEsImtlbGxpbndvb2Quemlwc2lnbmVyMiJd This is ZipSigner 2 and it works perfectly. Sign the APK, then try to install it using a file manager or something, you know, install it like normal. If it still doesn't install after being signed, use the method above and push it to /system/app and change the permissions, then it should run without issues.

Is there a way to permanently install Touchwiz task manager on cm10?

I hate having to copy the apk to system/app, changing the permissions, and rebooting the phone every time I update with nightly which is like every other day
You could add it to the ROM before you flash it. Not sure this would save you any time though.
Sent from my SAMSUNG-SGH-I727
yingjai said:
I hate having to copy the apk to system/app, changing the permissions, and rebooting the phone every time I update with nightly which is like every other day
Click to expand...
Click to collapse
I doubt that my friend CM roms are pretty versatile but the base there content on pure performance and awesome mods I doubt they will ever add this permanently. You can try make it a flash zip so when you update the ROM you can flash TWM right after
Sent from my SAMSUNG-SGH-I727 using xda premium
yingjai said:
I hate having to copy the apk to system/app, changing the permissions, and rebooting the phone every time I update with nightly which is like every other day
Click to expand...
Click to collapse
Why would you want that anyway?
Sent from my SAMSUNG-SGH-I727 using Tapatalk 2
Yes, you'll need to create a flashable zip that implements the addon.d scripting supported in CM builds.
Look here for some examples of how it's done.
Take one of the zips, and open it up (7-zip is my preference), drop your apk into \system\app (delete whatever other apks are in that folder).
Next, rename the script in \system\addon.d to something like 94-twm.sh and then edit the section under list_files() so that it looks like this:
Code:
list_files() {
cat <<EOF
app/nameofyourtwmapk.apk
EOF
}
Obivously replace nameofyourtwmapk.apk with the real name of the apk you're flashing.
Now flash your zip in CWM. This will install your apk in /system/app and the script in /system/addon.d so that every time a new CM rom is flashed the install script will backup and restore your apk.
This is exactly how CM handles backing up and restoring the gapps during a CM flash.
Great explanation schmitty! I knew about the addon.d restore for gapps, but wouldn't've had a clue on how to include any personal additions. Thanks!
Sent from my SAMSUNG-SGH-I727 using Tapatalk 2
cschmitt said:
Yes, you'll need to create a flashable zip that implements the addon.d scripting supported in CM builds.
Look here for some examples of how it's done.
Take one of the zips, and open it up (7-zip is my preference), drop your apk into \system\app (delete whatever other apks are in that folder).
Next, rename the script in \system\addon.d to something like 94-twm.sh and then edit the section under list_files() so that it looks like this:
Code:
list_files() {
cat <<EOF
app/nameofyourtwmapk.apk
EOF
}
Obivously replace nameofyourtwmapk.apk with the real name of the apk you're flashing.
Now flash your zip in CWM. This will install your apk in /system/app and the script in /system/addon.d so that every time a new CM rom is flashed the install script will backup and restore your apk.
This is exactly how CM handles backing up and restoring the gapps during a CM flash.
Click to expand...
Click to collapse
I followed your instructions exactly and it didn't work. Do I need to edit the manifest or something also? I used the Nova Launcher 1.3.1 zip.
yingjai said:
I followed your instructions exactly and it didn't work. Do I need to edit the manifest or something also? I used the Nova Launcher 1.3.1 zip.
Click to expand...
Click to collapse
What didn't work? Any error in CWM? Need details in order to help. Maybe post the zip you built so we can have a look.
After several tries, I've finally got it to work.
Posting here for other people who want it.
thanks
Thanks man! I really like this stock task manager better also... just like its simple features, works quickly, clears memory, uninstaller, etc... so, thanks for this! Nice to be able to add it to my roms...
~Dan~

CRT Off for rooted Stock 4.4.4

Haven't expected this to work on Stock 4.4.4 but it does, the plain old framework-res.apk one line hack. Not a big thing but nice to have so I attached the file if someone wants it.
Runs without issues on my XT1052 Stock ROM, be sure to backup your system with twrp or whatever you prefer first because I'm not responsible for bricked devices or bootloops.
Howto:
Copy the file to /system/framework
Delete/rename original framework-res.apk in /system/framework
wait until your phone stops spitting errors on you
Rename crt_off-framework-res.apk to framework-res.apk
Change file permissions to 644 (rw-r--r--)
Reboot
md5sum for attachment: 6133c102d2a5c1e557aa9ea6d6be0ecb
Hardmood said:
Haven't expected this to work on Stock 4.4.4 but it does, the plain old framework-res.apk one line hack. Not a big thing but nice to have so I attached the file if someone wants it.
Runs without issues on my XT1052 Stock ROM, be sure to backup your system with twrp or whatever you prefer first because I'm not responsible for bricked devices or bootloops.
Howto:
Copy the file to /system/framework
Delete/rename original framework-res.apk in /system/framework
wait until your phone stops spitting errors on you
Rename crt_off-framework-res.apk to framework-res.apk
Change file permissions to 644 (rw-r--r--)
Reboot
md5sum for attachment: 6133c102d2a5c1e557aa9ea6d6be0ecb
Click to expand...
Click to collapse
An easier way is using xposed and the module gravitybox.
Inside the visualization settings you can find the crt effect.
I try to use your method but this did not work for me.
The effect worked but every 3 seconds had a UI FC

[TEST] [Flash Zip] [HD 10] [ROOT] All-in-1: The ultimate hacks, tricks & mods zip

I have been on XDA for 2 and a half years or so. I have gained a vast amount of knowledge and skills and its all in part due to XDA and the individuals who spend their time helping others who have made this all possible. The list of those to thank is too long. So before you see what I have to offer below, I want to thank everyone around the forums here for your help, or criticism . Without you guys, I never would've learned what I know today.
Most of my hacks for the HD 10 are spread out around several threads. That makes it hard to keep everyone updated when I find or create new goodies. It also makes it hard for users to find these goodies. This thread aims to solve that problem. From now on, I will include, if possible, my tricks and hacks in this thread. This aims to make searching for and installing these modifications quick and simple.
I have created a flash zip that installs all my goodies and hacks I have come up with so far. I just need so others to test it and make sure the installation process works and everything that is installed works. So please report back your findings so I can remove test from the thread.
***IIf this zip doesn't work or if it fails the worst that can happen is you will have to flash back to fresh stock and start all over and re-root. So make note of your Fire OS version before installing this zip. I am not responsible for anything that doesn't work. If you install this zip, you are doing so at your own risk.***
This zip does NOT contain the Google Play Store. By installing this zip, I assume you already have it installed. ViPER4Android requires an extra step or two and SELinux switch. See below.
Requirements:
- HD 10 with Fire OS 5.6.1.0 or 5.6.2.0
- Rooted with Xposed installed and Flash Fire functioning properly. See here to get it up and running.
What this zip includes:
- *ALL* of my framework-res mods including WiFi and location service optimizations.
- My rewritten Settings.apk which also includes all of my mods.
- Stock Basic Dreams and Photo Table screensaver. This was one of my goals when I first signed up on XDA. I knew what needed to be done to get this to work, I just didn't know how. Finally after nearly 4 to 6 months of reading and testing, I was finally able to edit the framework-res.apk to bring you this and other features. I also had to track down a working Basic Dreams and Photo Table APK. That was half the battle. Go to settings -> display settings -> Daydream. You can choose colors, clock or set some custom photos in Photo Table. Tap three dots in upper right to decide when Daydream turns on. (Note: Photo table requires your images be placed in internal storage in the 'Pictures' folder).
- Google Calendar (assuming you have deleted Amazon's calendar).
- DeskClock latest update and APK for Google Clock (assuming you deleted Amazon's clock).
- Google Contacts Sync Adapter (Once installed, you can delete Amazon's contact sync adapter as seen here. Also for non-root users). This allows for a small amount of visual customization when you pull down the notification bar. When you customize your profile in Google Contacts (also included in this zip) with a photo, the icon in the notification panel will change to whatever you upload as your contacts photo.
- Google Contacts (requires sync adapter listed above).
- Google TTS. You can delete PicoTTS in /system/app once Google TTS is installed. It's very outdated. You can also delete both of the Ivona folders in /system/priv-app. Best to delete app data for all three before deleting.
- Latin IME (AOSP replacement for stock keyboard. Will only work when you delete Amazon's keyboard (com.amazon.redstone), any other keyboard you have installed, then perform a factory reset without installing a new one.
- Stock Android Marshmallow boot animation. The zip replaces the bootanimation binary file in /system/bin/bootanimation with one from from @ggow custom ROM for the Fire 7. Amazon had modified the stock bootanimation binary to force the gold 'fire' boot animation. Doing this made it impossible to customize the boot animation. So I replaced it under the assumption the Fire 7 ROM binary is from an AOSP build and is pretty much universal among most custom ROMs. And it worked!
- Gallery3d. Replaces Amazon Photos (You have to delete Amazon Photos on your own) with library injection so it is fully featured. You can edit all images with a full stock of editing options. (does not set lock screen wallpaper. To change lock screen wallpaper, see here. Requires root). I was able to find the APK and libraries in this thread. The flash zip there doesn't work for our devices so I modified the APK to be more tablet friendly, allowing for scrolling and viewing in landscape mode then added the relevant files to this zip. In the APK, I removed the options for a settings menu, because it doesn't function, but the library does a great job at making up for the loss of it.
- CM Browser. I was able to port over this APK along with CM File Manager, CM Wallpapers, Lock Clock and Trebuchet from an official CM Lollipop ROM for the Amazon HD 8.9.
- CM File Manager (Can replace your favorite root explorer).
- CM Wallpapers. Cyanogenmod actually had a few good wallpapers. I wish they had made their own live ones though.
- CM Lock Clock with weather. (Yahoo weather doesn't function. Use Open Weather and set update interval to 30mins).
- Trebuchet Launcher with basic launcher settings. (You have to delete fire launcher on your own for this to take effect. /system/priv-app/com.amazon.firelauncher)
- Google Calculator (assuming you deleted Amazon's)
- Stock Android Live Wallpapers and Live Wallpaper Picker (doesn't include Androids add on wallpapers. For all of Android's stock live wallpaper add ons and stock wallpaper images, see this thread.
What this zip DOES NOT include or do:
- Google Play store is NOT installed. It is best advised to do this manually. Even flashing Gapps doesn't stop you from needing to tweak Secure Settings a little bit.
- Does not delete or remove any files or folders. It does however overwrite some. The framework-res, FireTabletSettings and bootanimation files will all be overwritten.
- Not yet a custom ROM, but it's close.
-Build.prop edits are not included. My WiFi optimizations and ViPER4Android need a few tweaks. Please see the 'build.prop' section below for details.
Installation:
NOTE: If you only wish to install certain packages or tweaks such as ViPER4Android, see instructions below installation guide.
1. Simply place the DragonMods.zip into internal storage.
2. Open Flash Fire and tap the '+' and select Wipe.
3. Make sure ONLY Dalvik Cache and Cache Partition are selected and tap the check mark in the upper right of the pop-up.
4. Tap the '+' again and tap 'Flash Zip or OTA'
5. From internal storage, select my zip package DragonMods.zip.
6. Tap FLASH and wait for everything to happen. This will take upwards of 10 minutes or more, depending on many variables so be very patient.
Install only select packages:
1. Place DragonMods.zip on your PC desktop. For this I use 7zip for Windows. Right click on the zip file and select 7-zip and open as archive.
2. Double click on system folder then double click on the folder you you want to delete. Example: If you do not want to install my framework-res APK, delete the framework folder. If you don't want CM Browser, delete that folder.
3. Once you are happy with your custom installation, replace the zip on your tablet's internal storage and follow installation instructions above.
ViPER4Android:
I have not included this in my zip for a few reasons. The foremost one being it requires you to delete a couple key files so I would rather you make the choice yourself rather than me doing it for you. I confirm it is full operational and functional and doesn't force close once installed properly. If you aren't convinced, just activate the notification.
1. Download the V4A2.3.4.0 Lollipop.zip provided at the Google Drive link below or go to this thread and download it. Make sure Selinux switch is installed, set to permissive with notification enabled. Also make sure BusyBox is installed.
2. On your tablet, go to /vendor or /system/vendor and tap etc.
3. Back up both of the audio files, audio_effects.conf and audio_policy.conf then delete them from the folder
4. Go to storage -> downloads and tap on the V4A2.3.4.0 Lollipop.zip, system, etc, and extract the two .conf files.
5. Go to the folder they were extracted into and copy both of them to /system/etc, overwriting the ones that are located there. Set the permissions (rw-r--r--) and reboot.
6. Go to downloads again, tap the V4A2.3.4.0 Lollipop.zip and system, app and extract the APK.
7. Create a folder in /system/app titled 'ViPER4Android'. Rename the APK 'ViPER4Android.apk' and paste it into the folder.
8. Set folder permission rwxr-xr-x, APK permission rw-r--r-- and reboot.
9. Open App and follow instructions. Tap upper right for menu and set UI to expert.
build.prop edits:
1. ViPER4Android needs a few tweaks to the build prop. If these variables and values already exist in your build.prop, please change them to the ones below. You can use Build Prop Editor or a root file explorer to make the edit:
Code:
Ipa.decode=false
tunnel.decode=false
lpa.use-stagefright=false
2. The WiFi needs a tiny bit more tweaking here too. Locate the following line in /system/build.prop and add the value to it as seen below (there is currently no value set and the best ones are 1, 6 or 11. You can use any number as long as it's 11 or less.
Code:
ro.wifi.channels=11
3. Locate the following lines in your build.prop. Back them up to a text file then delete both lines (numbers might be different):
Code:
wifi rssi->bar thresholds
persist.wifi.rssi.thresholds=-84,-75,-66,-55
Downloads:
DragonMods.zip (the main zip you need) - Current as of November 16, 2018
DragonMods5-6-2-0.zip (for users on FireOS 5.6.2.0)
V4A2.3.4.0_Lollipop.zip
That's all for now. This includes pretty much every hack, trick and tweak I have been able to achieve on these tablets so far. I hope you enjoy all of these and watch out for more of my hacks. Thank you everyone for making all of this possible! Don't forget to hit the thank button
Change Log
- November 22, 2018: Updated links to reflect the following: Fixed issue with Trebuchet launcher missing from zip by readding it to the folder. I don't know How I missed that. Replaced google Clock with correct APK. I meant to put in the DeskClock available from the Play Store. If anyone would like a zip containing the CM/AOSP DeskClock that changes colors as the day and night change, let me know and I will upload the APK. The reason for this mess: I used the wrong zip template I have for this package. The one with the mess was intended for my personal device. My apologies.
Problems:
-If you delete Amazon photos, when you tap settings, display settings, wallpaper, it will kick you back to main settings. Solution: download Amazon photos from the play store as a user app then do this:
Code:
adb shell
su
pm disable com.amazon.photos
pm clear com.amazon.photos
.
Function returns.
not sure how to install this
darkfortedx said:
not sure how to install this
Click to expand...
Click to collapse
Flash it in flash fire...says that in the OP
Be advised
I just downloaded it and realized I didn't put th right folder in for Trebuchet launcher so the folder is empty. So don't flash this zip until I can fix it when I get home later.
Update November 22, 2018 1:42PM:
- Fixed issue regarding launcher. See change log at the end of the OP.
after changing the permissions for /system/vendor/etc to rw-r-r and rebooting, get the boot screen then boot to quick flash on desktop then to black, can only get the power down window to show when holding power. I'm trying to change the permissions back in adb. . can you please send code to do this correctly? if this is the correct approach. i backed up the 2 files in es file explored back up folder.
I got it....
adb shell
su
mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system
chmod 755 /system/vendor/etc
this worked... took me a while to figure it out. But it's all part of learning!
---------- Post added at 01:37 AM ---------- Previous post was at 01:33 AM ----------
I missed that it was for the two files not the folder lol....
nikothebarber said:
I got it....
adb shell
su
mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system
chmod 755 /system/vendor/etc
this worked... took me a while to figure it out. But it's all part of learning!
---------- Post added at 01:37 AM ---------- Previous post was at 01:33 AM ----------
I missed that it was for the two files not the folder lol....
Click to expand...
Click to collapse
I have an update of this I'll upload later. I just want to make sure everything works as advertised. Apologies if not. I made a stupid mistake earlier that I fixed but might have missed a small thing or two.
Sent from my MotoG3 using XDA Labs
When I tried to flash it if flashfire, it will juz stuck in the first black screen for over 15 mins.
I can juz simply quit the app and everything remains the same and work fine though.
What would possibly be the problem?
 @DragonFire1024
Tried to Install ViPER4Android with the steps and files you linked but was unsuccessful. When I bring up the Driver status and they all say no to Enabled. It already prompted me to install drivers which I did and re booted and still no go. I'm familiar with installing ViPER4Android and have it installed on my phone but not able to get it going in HD10. This tablet needs some way to higher the sound, sound on this tablet SUCKS. Any help would be greatly appreciated.
Touchpad64gb said:
Tried to Install ViPER4Android with the steps and files you linked but was unsuccessful. When I bring up the Driver status and they all say no to Enabled. It already prompted me to install drivers which I did and re booted and still no go. I'm familiar with installing ViPER4Android and have it installed on my phone but not able to get it going in HD10. This tablet needs some way to higher the sound, sound on this tablet SUCKS. Any help would be greatly appreciated.
Click to expand...
Click to collapse
Sorry I've been very sick the last several days and have spent most of it in bed. Until I can look and see what's wrong, I can suggest you try 'volume boost by goodev' on the play store. You may need to make it a system app though.
Sent from my MotoG3 using XDA Labs
jeffreyyip314 said:
When I tried to flash it if flashfire, it will juz stuck in the first black screen for over 15 mins.
I can juz simply quit the app and everything remains the same and work fine though.
What would possibly be the problem?
@DragonFire1024
Click to expand...
Click to collapse
Flash fire will take approx. 10+ mins sometimes to go through the files then about the same time until the red flash fire bar appears at the top. With flash fire you just have to wait.
Sent from my MotoG3 using XDA Labs
DragonFire1024 said:
Sorry I've been very sick the last several days and have spent most of it in bed. Until I can look and see what's wrong, I can suggest you try 'volume boost by goodev' on the play store. You may need to make it a system app though.
Sent from my MotoG3 using XDA Labs
Click to expand...
Click to collapse
Thanks for your response, get some rest and I'll patiently wait to see what you come up with...Thanks again
Touchpad64gb said:
Thanks for your response, get some rest and I'll patiently wait to see what you come up with...Thanks again
Click to expand...
Click to collapse
Try deleting the viper folder if you installed it via a file explorer. Reboot then install viper as a regular app. Don't open it. In a root file explorer go to /data/app and copy viper folder to /system/app then reboot.
Sent from my MotoG3 using XDA Labs
DragonFire1024 said:
Try deleting the viper folder if you installed it via a file explorer. Reboot then install viper as a regular app. Don't open it. In a root file explorer go to /data/app and copy viper folder to /system/app then reboot.
Sent from my MotoG3 using XDA Labs
Click to expand...
Click to collapse
I did that the first time. I had to enable Selinux Switch and enable Permissive which it seems like you have to enable each time you want to use Viper. The Driver Status now says NEON enabled, Enabled=Yes, Status=Normal, Audio Format= Supported but it still sounds like it makes no difference in boost in volume. The App you suggested Volume Booster works great. On my phone I can notice the difference on Volume quality and boost but not on the HD10 using Viper. What settings are you using? Maybe it's the settings.
Touchpad64gb said:
I did that the first time. I had to enable Selinux Switch and enable Permissive which it seems like you have to enable each time you want to use Viper. The Driver Status now says NEON enabled, Enabled=Yes, Status=Normal, Audio Format= Supported but it still sounds like it makes no difference in boost in volume. The App you suggested Volume Booster works great. On my phone I can notice the difference on Volume quality and boost but not on the HD10 using Viper. What settings are you using? Maybe it's the settings.
Click to expand...
Click to collapse
Did you rename the audio.conf files in vendor?
Sent from my MotoG3 using XDA Labs
DragonFire1024 said:
Did you rename the audio.conf files in vendor?
Sent from my MotoG3 using XDA Labs
Click to expand...
Click to collapse
No, I didn't see any instructions to do so. Was I supposed to?
Touchpad64gb said:
No, I didn't see any instructions to do so. Was I supposed to?
Click to expand...
Click to collapse
Yes. Rename them. But you should do it before installing viper.
Sent from my MotoG3 using XDA Labs
DragonFire1024 said:
Yes. Rename them. But you should do it before installing viper.
Sent from my MotoG3 using XDA Labs
Click to expand...
Click to collapse
The original files were named the same as the files copied over that's why you have to allow it to overwrite. Original files and copied files were both named audio_effects.conf & audio_policy.conf. I also edited the build prop entries you mentioned. Can you share your build prop file so I can compare your entries to mine? What were the names you change audio_effects.conf & audio_policy.conf to?
Touchpad64gb said:
The original files were named the same as the files copied over that's why you have to allow it to overwrite. Original files and copied files were both named audio_effects.conf & audio_policy.conf. I also edited the build prop entries you mentioned. Can you share your build prop file so I can compare your entries to mine? What were the names you change audio_effects.conf & audio_policy.conf to?
Click to expand...
Click to collapse
Just put a _ at the end of .conf. I didn't add the removal of the vendor files in the zip and I think I stated that in the OP.
Sent from my MotoG3 using XDA Labs

Categories

Resources