Essential PH-1 (mata) Documentation

Size: px
Start display at page:

Download "Essential PH-1 (mata) Documentation"

Transcription

1 Essential PH-1 (mata) Documentation Release 1 the pink panther Aug 22, 2018

2

3 Contents 1 Prerequisites: 1 2 Unlocking the Bootloader 3 3 Working with A/B Partitioning Slots Installing LineageOS 7 5 Common Issues Fingerprint Scanner Stopped Working I Cant Boot After Restoring a Backup No Touch in TWRP Broken Crypto Magisk Removing the Red Verity Warning Stock Update Notifications are Still Appearing Back to Stock 13 7 Hidden features Add columns to QuickSettings Change the System DNS Server i

4 ii

5 CHAPTER 1 Prerequisites: You want fastboot up and running. Don t even attempt any of this if you don t. You will need a cable that is not the included cable. The included cable can cause issues with Fastboot. Unlocked Bootloader and Critical Partitions 1

6 Essential PH-1 (mata) Documentation, Release 1 2 Chapter 1. Prerequisites:

7 CHAPTER 2 Unlocking the Bootloader Bootloader can be unlocked via fastboot flashing unlock THIS WILL WIPE YOUR DATA It is important you also fastboot flashing unlock_critical. This allows updating firmware partitions through fastboot. Failure to do so has caused issues for users attempting to revert to stock. 3

8 Essential PH-1 (mata) Documentation, Release 1 4 Chapter 2. Unlocking the Bootloader

9 CHAPTER 3 Working with A/B Partitioning The two boot partitions on this device, named boot_a and boot_b respectively, are not your traditional boot partitions. Both of these partitions contain a kernel and ramdisk like you are probably used to. The difference is that the ramdisk is now your recovery. This device uses a system-as-root layout, with which the system partition now contains what would have been the ramdisk. The A/B partitioning scheme can be quite confusing to users. There are actually two copies of many of the partitions 3.1 Slots The concept of slots comes into play to determine whether you are booting slot A or slot B. We can determine which slot is active or marked for booting via adb: adb shell getprop ro.boot.slot_suffix and via fastboot: fastboot getvar current-slot At any time we can switch to the next inactive slot using: fastboot set_active other, or we can use: fastboot set_active [a,b], to manually switch to a specified slot. The slots are designed to enable seamless system upgrades. Android can install an update to the inactive slot while it is still running. Once the update is completed, and optimized, Android will tell the system to switch to the slot that was upgraded. This means, unless tampered with, one slot will always be one version behind. A/B Partitioning not only reduces first boot time by performing dexopt before rebooting, it also prevents boot failures from failed updates. If Android fails to boot it will switch back to the previous slot so that the next reboot will be back on the current, working, slot. 5

10 Essential PH-1 (mata) Documentation, Release 1 6 Chapter 3. Working with A/B Partitioning

11 CHAPTER 4 Installing LineageOS You will need to flash TWRP, the latest can be found here: Flash it to the boot partition with fastboot. Invisiblek builds unoffical LineageOS images with modifications to make things easier/possible to use on mata. Invisiblek s unofficial builds include both the vendor.img and the Google Apps built in. These are included to facilitate LineageOS s built in updater. Invisiblek s Lineage builds can be found here: Roms are flashed the normal way through TWRP. More info and instructions here: Note: If you are changing roms you likely broke encryption and will bootloop until you fastboot -w Note2 Invisiblek s builds, because they are unofficial, are modified to pull OTA files from his personal server. Once official builds are released you will have to manually flash the official builds if you wish to receive official updates. A wipe may be required for this. 7

12 Essential PH-1 (mata) Documentation, Release 1 8 Chapter 4. Installing LineageOS

13 CHAPTER 5 Common Issues 5.1 Fingerprint Scanner Stopped Working Chances are you have a firmware mismatch. Typically checking your build.prop for the build version and flashing the matching firmware package will fix this. Firmware packages here: If you move data between devices or change encryption. You may end up with a nonworking fingerprint scanner after restoring data from a twrp backup. If this occurs, you can flush the recorded fingerprint data by deleting /data/ system/users/0/fpdata and /data/system/users/0/settings_fingerprint.xml. You should now be able to re-enroll your fingerprints. 5.2 I Cant Boot After Restoring a Backup This is usually caused by the fact that you had to flash TWRP in order to get in to TWRP. Therefore, when you did your backup, it actually backed up the TWRP install instead of your ROM s boot.img. The kernel included with TWRP cannot boot Android. I recommend swapping slots before flashing and booting into TWRP. This will flash twrp onto your older, non-booting, slot. fastboot set_active other will switch slots for you. Once you get to TWRP, go to the reboot menu, change to the other (original) slot, and finally perform your backup. Make sure you always decrypt your data, in TWRP, before backing up. It s unlikely backing up the encrypted FDE data is viable to restore. (Tinfoilers can always encrypt the twrp backup that is generated with the check of a box). 5.3 No Touch in TWRP Some day you may end up with a firmware that doesn t play well with twrp. Either no touch screen, or no data decryption. 9

14 Essential PH-1 (mata) Documentation, Release 1 One quick way to flash a zip in this situation is to put the device in sideload mode via an adb command: adb shell twrp sideload then flash your zip using adb sideload: adb sideload myawesomezip.zip 5.4 Broken Crypto If you get an error about ExtractTarFork() its plausible that you have a problem with crypto. It is likely that what is currently on your device is unhappy with how things were backed up. The best way I ve found to fix this is to perform a data wipe in fastboot via fastboot -w, then boot into your ROM (with clean data), go through the setup wizard and set a lockscreen password/pin (preferably matching what you had before), then reboot into twrp and restoring your data. Firmware between N and O are finicky when it comes to crypto. I m not even sure I ve even wrapped my head around all the ins and outs of Oreo s crypto yet. If you re backing up/restoring with O firmware, as of ( ) you re on your own. 5.5 Magisk Requirements: Working Android Tools (fastboot/adb) Decrypted /sdcard (remove your lockscreen security and reboot) A copy of your boot.img Magisk 16.4 or greater (16.4 beta is the latest at the time of this writing) The latest version of TWRP Getting your boot.img: If you are on the stock rom/kernel you may simply use the boot.img the appropriate BTS.zip ( matabts). If you are on Invisiblek s LineageOS builds, he offers a direct download of the boot image for pinned builds. If you are using a custom kernel you may simply use it s.zip instead of the boot.img If you are not on a pinned LOS, or you are using something else you will have to extract your boot.img. Note: It is important that you have completed the first time setup in order to Magisk to work. This cannot be applied to a fresh rom. Note 2: You must remove your lockscreen (be decrypted) in order to complete this procedure. This is so you can access your twrp, magisk, and boot.img from /sdcard later. Procedure: If you are unfamiliar with how the slots work flashing magisk can seem cumbersome. This is because magisk patches the boot.img which we are actually replacing with TWRP. Therefore the process will look a bit like this: Fastboot > flash twrp to active boot slot > boot twrp > flash boot.img to active boot slot > flash magisk to active boot slot. Before you reboot into fastboot to begin the process, make sure you have the required files on /sdcard. Reboot into fastboot, take note of your active slot, and flash twrp 10 Chapter 5. Common Issues

15 Essential PH-1 (mata) Documentation, Release 1 Reboot into recovery from fastboot Using TWRP, flash your boot.img to your active slot just like you would a rom. (If your boot is a raw boot.img, you must switch twrp into image mode from the choose zip screen) Flash magisk on top of your boot.img in your active slot You have now just patched the boot.img you flashed ontop of TWRP and your ROM should be able to boot. 5.6 Removing the Red Verity Warning The red verity message that appears on modified systems and requires you to hit the power button to boot can be cleared by fastboot flashing this boot.img: That image will reboot over and over again (you ll never get anywhere) but when it does, it ll clear out that annoying red error. After flashing it, boot normally once. You will still get the red error but it will be cleared it the next reboot. Here s a link to the patch that is included to perform this: Stock Update Notifications are Still Appearing You may still get stock Essential Update notifications even when on a custom rom. This is especially true is you re are one Android Security Bulliten (ASB) release behind. Update notifications can be annoying, and accidental taps can result in the device trying (and failing) to update only to reboot back into the installed custom rom. These notifications can easily be disabled from Settings. Browse to Settings -> Apps & notifications -> See all <x> apps -> Google Play Services -> App notifications. At the bottom of this page you will see System Update. This will stop you from seeing the stock rom update notifications until you switch roms or wipe data again Removing the Red Verity Warning 11

16 Essential PH-1 (mata) Documentation, Release 1 12 Chapter 5. Common Issues

17 CHAPTER 6 Back to Stock There is a tutorial on xda here: 13

18 Essential PH-1 (mata) Documentation, Release 1 14 Chapter 6. Back to Stock

19 CHAPTER 7 Hidden features Invisiblek s Los has some hidden customizations that were not mentioned earlier. These are made available through adb commands. 7.1 Add columns to QuickSettings The number of columns are changed using the command setprop persist.qs_columns as adb root For example, if you wanted four Quick Settings columns you can run: setprop persist.qs_columns 4 The default value is Change the System DNS Server It may be desirable for the user to use a DNS server other than Google s. Prior to Android P this is not easily done. Invisiblek demonstrates that you can make this change by echo ing the changes to /data/local.prop from adb shell. You will need to be root for this. In this example we will be setting the system dns server too Cloudflare s DNS , : adb root # you must first have root adb shell "echo 'net.rmnet_data2.user_dns1= ' >> /data/local.prop" adb shell "echo 'net.rmnet_data2.user_dns2= ' >> /data/local.prop" adb shell chmod 600 /data/local.prop # make local.prop rw for the current owner adb reboot Source: 15

Unlock bootloader samsung with odin

Unlock bootloader samsung with odin Unlock bootloader samsung with odin Huawei Mate 20 Tidbits: Wireless Easy Projection, HiVision details, and more. When prompted by the phone, press the Volume Up key then continue to Part 2. I have tried

More information

Manually Enter Recovery Mode Android Galaxy S2 I777

Manually Enter Recovery Mode Android Galaxy S2 I777 Manually Enter Recovery Mode Android Galaxy S2 I777 Hello, I have a Samsung Galaxy S2 (SGH-I777) that will not enter Recovery mode, no matter how much I try. I tried holding the (Power+Vol up+vol dn) Samsung

More information

Install ADB on Windows

Install ADB on Windows Android Debug Bridge or better known as ADB is a powerful and versatile tool that lets you do a lot of things like pulling out logs, installing and uninstalling apps, transferring files, rooting and flashing

More information

Galaxy Note Root Guide. by Max Lee

Galaxy Note Root Guide. by Max Lee Galaxy Note Root Guide by Max Lee Copyright 2012 by RootGalaxyNote.com Table of Contents How to Root Galaxy Note! [GT-N7000] Why root your Galaxy Note? How to Root Your Galaxy Note! (This is for GT-N7000

More information

ET5x System Update Using External microsd Card Update Procedure for Android L Upgrade Procedure for Android L to Android M...

ET5x System Update Using External microsd Card Update Procedure for Android L Upgrade Procedure for Android L to Android M... Contents ET5x System Update Using External microsd Card... 2 Update Procedure for Android L... 2 Upgrade Procedure for Android L to Android M... 9 Update Procedure for Android M to Android M... 14 Downgrade

More information

Manually Enter Recovery Mode Android Galaxy S2 Tmobile

Manually Enter Recovery Mode Android Galaxy S2 Tmobile Manually Enter Recovery Mode Android Galaxy S2 Tmobile Now, if you are planning to enter recovery mode on your Galaxy Note 4 for Update T-Mobile Galaxy Note 4 with Official CM 12.1 Nightly Android 5.1

More information

Clockworkmod Won't Boot Into Recovery Droid X2

Clockworkmod Won't Boot Into Recovery Droid X2 Clockworkmod Won't Boot Into Recovery Droid X2 Entering and using recovery mode represents maybe the most common Android into recovery) is an official procedure, which means that you won't lose the stock

More information

Manual Update To Android 4.4 Kitkat With Cm11 Rom N7000

Manual Update To Android 4.4 Kitkat With Cm11 Rom N7000 Manual Update To Android 4.4 Kitkat With Cm11 Rom N7000 Download Gapps for all Android 4.4 KitKat custom ROMs from HERE. Pingback: How to install Android 4.4 KitKat Official OmniROM Nightlies on Galaxy

More information

Android Bootloader and Verified Boot

Android Bootloader and Verified Boot Android Bootloader and Verified Boot Lecture 7 Security of Mobile Devices 2018 SMD Android Bootloader and Verified Boot, Lecture 7 1/38 Bootloader Recovery Verified Boot Bibliography SMD Android Bootloader

More information

Htc Incredible Software Update Won't Install

Htc Incredible Software Update Won't Install Htc Incredible Software Update Won't Install I checked this morning and there is a software update. Here you go: droidlife.com/2015/06/02..s/#more-168327 HTC Incredible 4G "fireball" unlocked, s-off, rooted

More information

How To Manually Update Google Play Apps On Kindle Fire Without Rooting

How To Manually Update Google Play Apps On Kindle Fire Without Rooting How To Manually Update Google Play Apps On Kindle Fire Without Rooting How to install Google play store on a Kindle fire HDX (no custom ROM )just the play store. How To Install Google Play On Fire Phone

More information

Enabler Manual Device-Based Anonymization

Enabler Manual Device-Based Anonymization Enabler Manual Device-Based Anonymization Project name Short name 5G Enablers for Network and System Security and Resilience 5G-ENSURE Grant agreement 671562 Call Authors H2020-ICT-2014-2 TIIT: Madalina

More information

BQ Firmware Flash Tool 3.0. User Manual

BQ Firmware Flash Tool 3.0. User Manual BQ Firmware Flash Tool 3.0 User Manual Contents 03 About the application BQ Firmware Flash Tool 03 Devices which support BQ Firmware Flash Tool 04 Necessary resources 05 Installing the application in Windows

More information

Manual Update To Android 4.4 Kitkat Cyanogenmod 11 Rom For Galaxy S I9000

Manual Update To Android 4.4 Kitkat Cyanogenmod 11 Rom For Galaxy S I9000 Manual Update To Android 4.4 Kitkat Cyanogenmod 11 Rom For Galaxy S I9000 As you know, then CyanogenMod doesn't need the GApps package to work Pingback: Update Samsung Galaxy S I9000 to Official CM9 Nightly

More information

Manual Android 4.3 Galaxy S3 Verizon Official Update

Manual Android 4.3 Galaxy S3 Verizon Official Update Manual Android 4.3 Galaxy S3 Verizon Official Update Here's an updated tutorial for rooting all Galaxy S3 models including AT&T, T-Mobile, (It will not work on Verizon S3 as it has a locked bootloader.)

More information

How to enter recovery mode android using pc

How to enter recovery mode android using pc How to enter recovery mode android using pc 6.7 Six Best Call Blocker Apps for Android. Join 250,000 subscribers and get a daily digest of news, geek trivia, and our feature articles. Lifeprint's Harry

More information

Samsung Galaxy S4 Schematics Apps To Sd Card

Samsung Galaxy S4 Schematics Apps To Sd Card Samsung Galaxy S4 Schematics Apps To Sd Card Damaged Fix The Samsung Galaxy S4, model i9505, features a 13-megapixel back camera, Once rooted, there's apps that allow you to transfer your apps tonthr sd

More information

Department of Computer Science and Engineering, Sri Jayachamarajendra College of Engineering, Mysore, Karnataka

Department of Computer Science and Engineering, Sri Jayachamarajendra College of Engineering, Mysore, Karnataka FUTURE DIRECTIONS FOR FIRMWARE FLASHING ON ANDROID DEVICES Yadunandan Laxman Huded* & S. Srinath** Department of Computer Science and Engineering, Sri Jayachamarajendra College of Engineering, Mysore,

More information

How To Manually Update Note 2 To Android 4.3

How To Manually Update Note 2 To Android 4.3 How To Manually Update Note 2 To Android 4.3 Using Odin Galaxy Note 2 (N7100) - Android 4.3 Leaked Samsung Pre-Release - How to Install. 7 Parts: Before Updating to Jelly Bean, Make Sure: Rooting Your

More information

How To Manually Update Android Apps On Kindle Fire Hd Without Rooting

How To Manually Update Android Apps On Kindle Fire Hd Without Rooting How To Manually Update Android Apps On Kindle Fire Hd Without Rooting Just got a New Kindle Fire HD (The kid won it) It says 4th generation 7 inch Fire HD/ In of the HTC One M9 is receiving an over-the-air

More information

Rooting Android. Lecture 10. Security of Mobile Devices. SMD Rooting Android, Lecture 10 1/33

Rooting Android. Lecture 10. Security of Mobile Devices. SMD Rooting Android, Lecture 10 1/33 Rooting Android Lecture 10 Security of Mobile Devices 2018 SMD Rooting Android, Lecture 10 1/33 Root Root Access on Different Types of Builds Root Access on Production Builds Full Rooting Tutorial Bibliography

More information

Usb Port On Manually Create Bootable Windows Xp Install Driver

Usb Port On Manually Create Bootable Windows Xp Install Driver Usb Port On Manually Create Bootable Windows Xp Install Driver Step 9: Install your third-party hardware and software drivers. Use Windows XP Files & Settings Transfer Wizard To Backup Files & Data option

More information

Manual Android Galaxy S3 4.3 Features List

Manual Android Galaxy S3 4.3 Features List Manual Android Galaxy S3 4.3 Features List Samsung Galaxy S3 GT I9300 Android smartphone can now be updated with the S3 with Official & Stable Jellybean 4.3 XXUGNH4 Android OS Guide ROM firmwares which

More information

Manual Android 4.3 Galaxy S3 Verizon Update Features

Manual Android 4.3 Galaxy S3 Verizon Update Features Manual Android 4.3 Galaxy S3 Verizon Update Features Verizon Galaxy S III - a forum dedicated to enthusiasts of the Verizon version of the Samsung Galaxy S3. Sticky Thread Sticky: TouchWiz Nature UX: The

More information

How To Flash Clockworkmod Touch Recovery 6.0 For The Galaxy S3 T999

How To Flash Clockworkmod Touch Recovery 6.0 For The Galaxy S3 T999 How To Flash Clockworkmod Touch Recovery 6.0 For The Galaxy S3 T999 Update T-Mobile Galaxy S3 SGH-T999 To Android 4.4.4 KitKat With SlimKat Stable Your device have latest CWM version 6.0.4.4 and up or

More information

Manual Update Android 4.3 Galaxy S4 Active S

Manual Update Android 4.3 Galaxy S4 Active S Manual Update Android 4.3 Galaxy S4 Active S At the time, the Samsung Galaxy S4 was running Android 4.2 Jelly Bean. Galaxy S4 has received a number of new software upgrades including Android 4.3 Jelly

More information

Android Jelly Bean Manual Install Application On Sd Card

Android Jelly Bean Manual Install Application On Sd Card Android Jelly Bean Manual Install Application On Sd Card All of them except the sd card,have really low space and I can't install 2 but i can move apps to sdcard and my other fone which 4.1.2 doesnt have

More information

Manually Root Droid Razr Maxx Jelly Bean Update Date

Manually Root Droid Razr Maxx Jelly Bean Update Date Manually Root Droid Razr Maxx Jelly Bean Update Date Droid bionic jelly bean root - The West researchers are is not droid bionic jelly bean The most anticipated update for the Droid RAZR Maxx HD, Jelly

More information

How To Update Your Facebook For Android >>>CLICK HERE<<<

How To Update Your Facebook For Android >>>CLICK HERE<<< How To Update Your Facebook For Android Phones Os Xrecovery A bug in Apple's release of ios 8.0.1 has broken iphone 6 and iphone 6 Plus devices. Log In to CNET, Sign In with Facebook Googleplus Yahoo,

More information

Adb Sideload Update Supersu V1.43 Zip

Adb Sideload Update Supersu V1.43 Zip Adb Sideload Update Supersu V1.43 Zip Yes, you will keep receiving OTA updates unless you change some basic system files. If you flash a C:/miniadb_m7_adb sideload SuperSU-v1.99.zip sending:. Shield Tablet

More information

ROM FLASHING INSTRUCTIONS FOR ONEPLUS 3 / 3T

ROM FLASHING INSTRUCTIONS FOR ONEPLUS 3 / 3T ROM FLASHING INSTRUCTIONS FOR ONEPLUS 3 / 3T 1. Locate the red USB C cable that came with your phone, and plug your phone into the computer. The OnePlus device will automatically boot a virtual CD drive.

More information

AirWatch for Android Devices for Skype for Business

AirWatch for Android Devices for Skype for Business Overview What is AirWatch AirWatch is the mobile device management (MDM) system provided by Michigan Medicine ensure security for smart phones and tablets that connect to the Michigan Medicine environment.

More information

FILE / HOW TO BACKUP RESTORE FRESH OSX NEW HDD EBOOK

FILE / HOW TO BACKUP RESTORE FRESH OSX NEW HDD EBOOK 10 July, 2018 FILE / HOW TO BACKUP RESTORE FRESH OSX NEW HDD EBOOK Document Filetype: PDF 434.58 KB 0 FILE / HOW TO BACKUP RESTORE FRESH OSX NEW HDD EBOOK A Time Machine Backup (New Mac / fresh install

More information

Manual Root Android Galaxy S2 Problems

Manual Root Android Galaxy S2 Problems Manual Root Android 4.0 4 Galaxy S2 Problems Nov 21, 2014. (*For update to ICS, Android 4.0.?, see, here.) You will then get a screen showing, "Version", with 4 lines of information. This can, of course,

More information

How To Root Htc Evo 4g Sprint Without Wiping Data

How To Root Htc Evo 4g Sprint Without Wiping Data How To Root Htc Evo 4g Sprint 2.3 5 Without Wiping Data That being said, rooting your EVO is quick, easy, and best of all, it doesnt delete anything on yo. (Gingerbread 2.3.3) This is how to root htc inspire

More information

Update Manual Ios 7.1 Iphone 4s Wont >>>CLICK HERE<<<

Update Manual Ios 7.1 Iphone 4s Wont >>>CLICK HERE<<< Update Manual Ios 7.1 Iphone 4s Wont ios 7.1.2 has caused some problems for some iphone, ipad and ipod touch users. Here's how you can That way, if anything goes wrong, at least you won't lose any data.

More information

Manual Android 4.3 Galaxy S3 Verizon Official Rom

Manual Android 4.3 Galaxy S3 Verizon Official Rom Manual Android 4.3 Galaxy S3 Verizon Official Rom Nov 4, 2013. The Galaxy S III is the successor to Samsung's best-selling Galaxy S II. Android 4.0.4. Released 2012-06-04. 1.50GHz Qualcomm Snapdragon S4.

More information

1 sur 5 11/09/ :22

1 sur 5 11/09/ :22 [WARNING! + GUIDE] Backup and Restore IMEI / Galaxy S3... 1 sur 5 11/09/01 08: 5,797,601 MEMBERS,71 NOW ONLINE Remember Me? Forgot your password? > Samsung Galaxy S III I9300, I9305 > Galaxy S III I9305

More information

Release Notes Zebra VC80x Android N Update 003 based on NG-00-A (GMS)

Release Notes Zebra VC80x Android N Update 003 based on NG-00-A (GMS) Release Notes Zebra VC80x Android N Update 003 based on 01-01-48-NG-00-A (GMS) Introduction Description Device Compatibility Component Contents Installation Requirements Installation Instructions Special

More information

Verizon Samsung Galaxy S3 Update

Verizon Samsung Galaxy S3 Update Verizon Samsung Galaxy S3 Update 4.2 2 10.1 Firmware (ROM)(GT-I9300)(4.2.2) CyanogenMod 10.1 Nightly Builds CyanogenMod is based on the Android Open Source Project with extra contributions from many people

More information

Spectralink PIVOT & Versity USB Driver V2.0.0

Spectralink PIVOT & Versity USB Driver V2.0.0 Spectralink PIVOT & Versity USB Driver V2.0.0 This technical bulletin explains the changes to the Spectralink PIVOT and Versity product USB Drivers, now version 2.0.0. System Affected Spectralink PIVOT

More information

User Guide Software Pdf Samsung Galaxy S4 Zoom

User Guide Software Pdf Samsung Galaxy S4 Zoom User Guide Software Pdf Samsung Galaxy S4 Zoom By anna / August 18, 2014 / Category Samsung Download user manual Samsung Galaxy S4 Zoom in PDF format: s4-zoom-en Services and Applications. ALERT: All Samsung

More information

Manual Android 4.0 Htc Sensation Update Problemen

Manual Android 4.0 Htc Sensation Update Problemen Manual Android 4.0 Htc Sensation Update Problemen Android rooting and updates for HTC Sensation(Z710a) with Android version 4.0 Ice Cream ROOT - ANDROID - DRIVERS. Each Android rooting guide is divided

More information

AirWatch for Android Devices for AirWatch InBox

AirWatch for Android Devices for AirWatch InBox Overview What is AirWatch AirWatch is the mobile device management (MDM) system provided by Michigan Medicine ensure security for smart phones and tablets that connect to the Michigan Medicine environment.

More information

Sprint Samsung Galaxy S2 Manual Update Problem Kies

Sprint Samsung Galaxy S2 Manual Update Problem Kies Sprint Samsung Galaxy S2 Manual Update Problem Kies "Advanced steps to take for Kies connection problems". Stock, official, Samsung Galaxy S2 firmware can be downloaded from the SamMobile Firmware Page.

More information

Amazon kindle fire drivers windows 10 drivers

Amazon kindle fire drivers windows 10 drivers Amazon kindle fire drivers windows 10 After enabling ADB access, connect your Fire Tablet to your computer with the included USB cable. Windows should detect it properly and download the necessary drivers.

More information

Manual Android Galaxy S3 4.3 Feature List

Manual Android Galaxy S3 4.3 Feature List Manual Android Galaxy S3 4.3 Feature List Samsung Galaxy S3 GT I9300 Android smartphone can now be updated with the S3 with Official & Stable Jellybean 4.3 XXUGNH4 Android OS Guide ROM firmwares which

More information

Samsung Galaxy Ace Instruction Video Format Converter Software

Samsung Galaxy Ace Instruction Video Format Converter Software Samsung Galaxy Ace Instruction Video Format Converter Software Welcome to Samsung LEVANT. Discover a wide range of NAV. close Samsung video Close Video Expand. Samsung Galaxy S6 edge with wireless charger.

More information

Manual Install Android 4.4 On Galaxy S4 I9505 Xda

Manual Install Android 4.4 On Galaxy S4 I9505 Xda Manual Install Android 4.4 On Galaxy S4 I9505 Xda Today, Samsung started with an update to Android 5.0.1 for the BLACK-edition of the S4 (but can also installed to the "normal" S4): UPDATE: 16 mar 15 Down

More information

User Guide Software Pdf Samsung Galaxy S2 Skyrocket

User Guide Software Pdf Samsung Galaxy S2 Skyrocket User Guide Software Pdf Samsung Galaxy S2 Skyrocket AT&T released a new software update for the Samsung Galaxy S II Skyrocket (i727) via Firmware Over the Air (FOTA) over User-Initiated Software Update.

More information

The Complete Guide to the VAVA Dash Cam Model: VA-CD001

The Complete Guide to the VAVA Dash Cam Model: VA-CD001 The Complete Guide to the VAVA Dash Cam Model: VA-CD001 1. App Overview After connecting your phone with the VAVA Wi-Fi, open the app and connect the VAVA dash cam. Tap on the play icon to access the live

More information

Samsung Galaxy S3 Repair Video Formats Support File

Samsung Galaxy S3 Repair Video Formats Support File Samsung Galaxy S3 Repair Video Formats Support File How to Convert Video to Samsung Galaxy Format H.264 video and MP3, Here we list the supported file formats for Samsung Galaxy S5, S4, S3, S2 and S:.

More information

How To Reinstall Grub In Windows 7 Without Losing Data And Programs

How To Reinstall Grub In Windows 7 Without Losing Data And Programs How To Reinstall Grub In Windows 7 Without Losing Data And Programs So if I install Windows 7 using CD again, will I lose Ubuntu? then yes you will lose Ubuntu, however if you reinstall Windows without

More information

Sprint Galaxy S2 Jelly Bean Manual Update Problems After

Sprint Galaxy S2 Jelly Bean Manual Update Problems After Sprint Galaxy S2 Jelly Bean Manual Update Problems After Sprint Galaxy S II Epic 4G Touch - A forum dedicated to enthusiasts of the Sprint Galaxy S II Epic 4G Touch. Unhappy Help! Cannot turn off text-to-speech

More information

Fix Three Common Accounting Firm Data Vulnerabilities

Fix Three Common Accounting Firm Data Vulnerabilities Fix Three Common Accounting Firm Data Vulnerabilities Fix Three Common Accounting Firm Data Vulnerabilities Use these step-by-step guides to protect your business from data thieves Brought to you by: Encyro

More information

DOWNLOAD PDF SAMSUNG S5 ALL TUTORIALS

DOWNLOAD PDF SAMSUNG S5 ALL TUTORIALS Chapter 1 : Samsung Galaxy S6 for beginners: How to do all of the basics Recombu Hi guys! if you are planning to root your freshly baked Samsung prime, the Galaxy S5 then you don't have to go any where

More information

Manual Windows 7 Tool Usb Error Unable To

Manual Windows 7 Tool Usb Error Unable To Manual Windows 7 Tool Usb Error Unable To Copy Files 99 I'm making a bootable usb so i can install windows 7 on my computer but when using Windows 7 USB/DVD tool i get to 99% i get this error message I've

More information

Optimizing Smart Phones

Optimizing Smart Phones Optimizing Smart Phones 1. Restart the phone. This is a temporary option, but it works! As long as the problem does not persist, it may have been a one-time error. These things happen occasionally. 2.

More information

EDGE, MICROSOFT S BROWSER

EDGE, MICROSOFT S BROWSER EDGE, MICROSOFT S BROWSER To launch Microsoft Edge, click the Microsoft Edge button (it s the solid blue E) on the Windows Taskbar. Edge Replaces Internet Explorer Internet Explorer is no longer the default

More information

SIS offline. Getting Started

SIS offline. Getting Started SIS offline We highly recommend using Firefox version 3.0 or newer with the offline SIS. Internet Explorer is specifically not recommended because of its noncompliance with internet standards. Getting

More information

How do I perform a backup and restore from a NOKIA IP VPN 10i to another NOKIA IP VPN 10i in the event of a hardware failure?

How do I perform a backup and restore from a NOKIA IP VPN 10i to another NOKIA IP VPN 10i in the event of a hardware failure? BACKUP AND RESTORE 1 (14) How do I perform a backup and restore from a NOKIA IP VPN 10i to another NOKIA IP VPN 10i in the event of a hardware failure? This document will demonstrate the backup process

More information

Android System Development Training 4-day session

Android System Development Training 4-day session Android System Development Training 4-day session Title Android System Development Training Overview Understanding the Android Internals Understanding the Android Build System Customizing Android for a

More information

Seagate Manager. User Guide. For Use With Your FreeAgent TM Drive. Seagate Manager User Guide 1

Seagate Manager. User Guide. For Use With Your FreeAgent TM Drive. Seagate Manager User Guide 1 Seagate Manager User Guide For Use With Your FreeAgent TM Drive Seagate Manager User Guide 1 Seagate Manager User Guide Revision 2 2009 Seagate Technology LLC. All rights reserved. Seagate, Seagate Technology,

More information

Instructions How To Use The Kindle Fire Hd. Camera App Apk >>>CLICK HERE<<<

Instructions How To Use The Kindle Fire Hd. Camera App Apk >>>CLICK HERE<<< Instructions How To Use The Kindle Fire Hd Camera App Apk (An EASIER alternative file-manager app for just installing app files (*.apk files) is Easy I use the Easy Installer for app-installs and ES Explorer

More information

MF97G Upgrade Guide (Through an SD Card)

MF97G Upgrade Guide (Through an SD Card) MF97G Upgrade Guide (Through an SD Card) 1. Backing Up the Data 1) Download the upgrade package. Download the upgrade package (update.zip) that matches your device from ZTE handset website. If the downloaded

More information

Sprint Samsung Galaxy S3 Latest System Update To Jelly Bean 4.2

Sprint Samsung Galaxy S3 Latest System Update To Jelly Bean 4.2 Sprint Samsung Galaxy S3 Latest System Update To Jelly Bean 4.2 Latest News and Firmware for your Samsung Devices! Android 4.4 KitKat update for Sprint's Galaxy S3 (SPH-L710) rolling out to users Device:

More information

Iphone 4 Manual In Safari Not Working After Jailbreak 5.1.1

Iphone 4 Manual In Safari Not Working After Jailbreak 5.1.1 Iphone 4 Manual In Safari Not Working After Jailbreak 5.1.1 How To Jailbreak iphone 4, iphone 3GS On ios Using. jailbreak iphone 3 ios 6.1 IOS and get help. is there a jailbreak for ipod 5.1.1 Step One

More information

Motorola Atrix 2 Software Update Failed

Motorola Atrix 2 Software Update Failed Motorola Atrix 2 Software Update Failed How do I setup and use ringtones using the ATRIX HD? Software & Drivers BlissPop-v2.0- mb886-official-20150205-2104 rom, which is a Lolipop 5.0.2 rom. have a rather

More information

Page 1 of 76. Like Tweet +1

Page 1 of 76. Like Tweet +1 1 of 6 15-07-2014 19:55 Attend XDA's Second Annual Developer Conference, XDA:DevCon 2014! 5,718,711 MEMBERS 53,923 NOW ONLINE Remember Me? Forgot your password? > Asus Eee Pad Transformer TF101 > Eee Pad

More information

Ios 7 Update Manual Iphone 5 Beta Ipsw File For Ipad 3 Wifi >>>CLICK HERE<<<

Ios 7 Update Manual Iphone 5 Beta Ipsw File For Ipad 3 Wifi >>>CLICK HERE<<< Ios 7 Update Manual Iphone 5 Beta Ipsw File For Ipad 3 Wifi Downloading ios 8.4.1 Update on iphone, ipad, or ipod Touch option for advanced users is to install ios 8.4.1 manually using IPSW. These IPSW

More information

Release Notes - Zebra TC8000 Android L GMS Update 07 Release

Release Notes - Zebra TC8000 Android L GMS Update 07 Release Release Notes - Zebra TC8000 Android L GMS Update 07 Release Contents Description Device Compatibility Component Contents Installation Requirements Installation Instructions Downloadable Software included

More information

Release Notes Zebra MC40 Android KK FIPS - BSP v LifeGuard Update 04 Release

Release Notes Zebra MC40 Android KK FIPS - BSP v LifeGuard Update 04 Release Release Notes Zebra MC40 Android KK FIPS - BSP v02.13.0701 - LifeGuard Update 04 Release Contents Introduction Component Description and Version Package Details Device Compatibility Installation Requirements

More information

How to recover AZBox HD died during an upgrade by andressis2k

How to recover AZBox HD died during an upgrade by andressis2k How to recover AZBox HD died during an upgrade by andressis2k This tutorial details the process of recovering a dead AZBox. I am not responsible if, because of it, your box results in worse shape than

More information

How to Jailbreak an ipod. Felicia Jimenez Bao Lam Elmer Martinez Lauren Messenger TECM 2700 Terry Smith class

How to Jailbreak an ipod. Felicia Jimenez Bao Lam Elmer Martinez Lauren Messenger TECM 2700 Terry Smith class How to Jailbreak an ipod Felicia Jimenez Bao Lam Elmer Martinez Lauren Messenger TECM 2700 Terry Smith 11-12 class 1 Table of Contents Jailbreaking Terminology... 3 Materials Needed for Jailbreaking...

More information

OK, enough of the introductions let s get started

OK, enough of the introductions let s get started Thank you for downloading a RileyROM from Freaktab.com. It is VERY IMPORTANT for you to read this set of instructions BEFORE you start ANYTHING!!! If you have questions about any procedure, browse the

More information

Release Notes Zebra MC33x NN- 00-A Release for Non-GMS

Release Notes Zebra MC33x NN- 00-A Release for Non-GMS Release Notes Zebra MC33x 01-01-48-NN- 00-A Release for Non-GMS Introduction Description Zebra Value Adds Feature List Device Compatibility Component Contents Installation Requirements Installation Instructions

More information

How To Manually Update Droid Incredible 2 To Android Jelly Bean

How To Manually Update Droid Incredible 2 To Android Jelly Bean How To Manually Update Droid Incredible 2 To Android 4.1.1 Jelly Bean Yesterday, T-Mobile started to roll out the Android 4.1.2 Jelly Bean update for its back in November when the device was updated to

More information

Release Notes - MC40 Android KK - BSP v HotFix CFE v00.03 Package

Release Notes - MC40 Android KK - BSP v HotFix CFE v00.03 Package Release Notes - MC40 Android KK - BSP v02.13.0701 - HotFix CFE v00.03 Package Introduction Component Description and Version Fixes/Patches Included Package Details Device Compatibility Installation Requirements

More information

Release Notes Zebra TC51, TC51-HC, TC70x, TC56 and TC75x Android N Update003 based on NG-00-A (GMS)

Release Notes Zebra TC51, TC51-HC, TC70x, TC56 and TC75x Android N Update003 based on NG-00-A (GMS) Release Notes Zebra TC51, TC51-HC, TC70x, TC56 and TC75x Android N Update003 based on 01-01-49-NG-00-A (GMS) Introduction Description Device Compatibility Component Contents Installation Requirements Installation

More information

Apple Store Mac iphone Watch ipad ipod itunes Support ipod touch. You can put your ios device into recovery mode, then restore it using itunes.

Apple Store Mac iphone Watch ipad ipod itunes Support ipod touch. You can put your ios device into recovery mode, then restore it using itunes. Itunes Store Manual Error Ipad 2 Sometimes, you might see a numeric error message when you sync, update, back up, Your iphone, ipad, or ipod touch aren't recognized in itunes, or they won't back up, You

More information

ANDROID PRIVACY & SECURITY GUIDE ANDROID DEVICE SETTINGS

ANDROID PRIVACY & SECURITY GUIDE ANDROID DEVICE SETTINGS ANDROID PRIVACY & SECURITY GUIDE WESNET The Women s Services Network Smartphones store a lot of personal information, including email or social media accounts, reminders and notes, the number of steps

More information

Reason User Manual Pdf Samsung Galaxy S3 Mini Gt-18190

Reason User Manual Pdf Samsung Galaxy S3 Mini Gt-18190 Reason User Manual Pdf Samsung Galaxy S3 Mini Gt-18190 Samsung SIII mini Ve i8200/n/l/q is not same with i8190/n/l so dont try to flash i8190/n/l zips files! Reason: new rom I rooted my GT-I8200L using

More information

Release Notes - MC40 Android KK FIPS - BSP v LifeGuard Update 03 Release

Release Notes - MC40 Android KK FIPS - BSP v LifeGuard Update 03 Release Release Notes - MC40 Android KK FIPS - BSP v02.13.0701 LifeGuard Update 03 Release Contents Introduction Component Description and Version Package Details Device Compatibility Installation Requirements

More information

Manual Of Ios 7 Beta 6 Iphone 4s Ipsw >>>CLICK HERE<<<

Manual Of Ios 7 Beta 6 Iphone 4s Ipsw >>>CLICK HERE<<< Manual Of Ios 7 Beta 6 Iphone 4s Ipsw iphone 5 users can now download ios 7 on their iphone 4S. you will get instructions to jailbreak ios 7 firmware with links and supported tutorials Download ios 7.1.2

More information

Access android system files from pc

Access android system files from pc Access android system files from pc Can I access an Android mobile device from my own Android device without having physical access to the target device using only its MAC addres. Avere Accesso a Tutti

More information

Manual Update Of Ios 7 For Iphone 4s Release

Manual Update Of Ios 7 For Iphone 4s Release Manual Update Of Ios 7 For Iphone 4s Release Date When Apple released ios 8.1.1, they promised that the update would fix some the test against the iphone 4S and ipad 2, comparing it to ios 7, and ios 7.1.2.

More information

FAQ for KULT Basic. Connections. Settings. Calls. Apps. Media

FAQ for KULT Basic. Connections. Settings. Calls. Apps. Media FAQ for KULT Basic 1. What do the Icons mean that can be found in notifications bar at the top of my screen? 2. How can I move an item on the home screen? 3. How can I switch between home screens? 4. How

More information

How To Reset Jailbroken Ipad Without. Computer >>>CLICK HERE<<<

How To Reset Jailbroken Ipad Without. Computer >>>CLICK HERE<<< How To Reset Jailbroken Ipad 2 5 1 Without Computer I have a jailbroken iphone 4 running on ios 7.1.1. Step 2: Press the "Home" button and connect your iphone to the computer with data cable, and then

More information

Release Notes Zebra MC92 Android KK LifeGuard Update 02 Release

Release Notes Zebra MC92 Android KK LifeGuard Update 02 Release Release Notes Zebra MC92 Android KK LifeGuard Update 02 Release Contents Component Contents Device Compatibility Installation Requirements Installation Instructions Downloadable Software included in this

More information

Sophos Central Self Service Portal help

Sophos Central Self Service Portal help Sophos Central Self Service Portal help Contents 1 About this Help...3 2 Email...4 2.1 Manage Quarantined Email...4 2.2 Emergency Inbox...4 3 Mobile Control...5 3.1 Set up Sophos Mobile Control on your

More information

If you experience issues at any point in the process, try checking our Troublshooting guide.

If you experience issues at any point in the process, try checking our Troublshooting guide. Follow along with this guide to set up your Omega2 for the first time. We ll first learn how to properly connect your Omega to a Dock and power it up. Then we ll connect to it to use the Setup Wizard to

More information

KEEPOD QUICK USER GUIDE

KEEPOD QUICK USER GUIDE Keepod Quick User Guide - Page 0 KEEPOD QUICK USER GUIDE March 2015 Keepod Quick User Guide - Page 1 You now are officially a Keepoder and can now make use of all the benefits related to Keepod and personal

More information

GeisingerConnect PingID Mobile App Enrollment Guide

GeisingerConnect PingID Mobile App Enrollment Guide Purpose of this Guide This guide is intended for users who need to enroll in the PingID mobile device app to use PingID for logging into GeisingerConnect. If you replace your phone, please contact the

More information

Manually Windows Update Vista Not Work In

Manually Windows Update Vista Not Work In Manually Windows Update Vista Not Work In Safe Mode Doesn To boot Windows Vista in Safe Mode, follow these steps: If Windows Updates aren't installed automatically in your Windows Vista system, you need

More information

IMPORTANT Transferring Information from an Earlier Model Newton Personal Digital Assistant (PDA)

IMPORTANT Transferring Information from an Earlier Model Newton Personal Digital Assistant (PDA) IMPORTANT Transferring Information from an Earlier Model Newton Personal Digital Assistant (PDA) If you have an earlier model Newton PDA, such as an Apple MessagePad 100, or MessagePad 110, follow these

More information

Manual Install Android 4.4 On Galaxy S4 Verizon Features

Manual Install Android 4.4 On Galaxy S4 Verizon Features Manual Install Android 4.4 On Galaxy S4 Verizon Features Soon after, the Galaxy S4 users on Verizon reported getting the Android 5.0 Lollipop over-theair. Floating buttons give you fast access to the most

More information

Root User Guide Android Jelly Bean Operating System

Root User Guide Android Jelly Bean Operating System Root User Guide Android 4.1 1 Jelly Bean Operating System microsoft-toolkit-2-4-6-with-keygen-downloads, Arriva Android 4.1.2 per Galaxy altium designer 13 1 2 build 27559 setup key windows In this post

More information

Auto Upgrade. Auto upgrade - Network Method

Auto Upgrade. Auto upgrade - Network Method Auto Upgrade This section provides procedures on how to upgrade your generator using the auto upgrade feature. Note that there are also procedures for manually upgrading your 880 series generator, refer

More information

K9 Series Firmware Update Guide

K9 Series Firmware Update Guide K9 Series Firmware Update Guide This Guide provides how to download and install a new version of the firmware (operating software) for K9 Series DVR. 제품사진 Requirements To update the firmware on the K9

More information

Ace S5830i With Ics Android 4.0

Ace S5830i With Ics Android 4.0 Instructions How To Use Samsung Galaxy Ace S5830i With Ics Android 4.0 Samsung galaxy tab plus 7.0 gt-p6200 - android rom update, Here's the manual procedure on how to upgrade the samsung galaxy tab plus

More information