Mount Kindle Fire On Mac

broken image


You can use Android Debug Bridge (ADB) to connect your Fire tablet to your computer for testing and debugging. You connect your computer to your Fire tablet through a micro-USB cable.

Android Debug Bridge (ADB) is a command-line utility for running and managing Android apps on your device or emulator. For more information and instructions on using ADB, see Android Debug Bridge.

Connect the Kindle Fire directly to the computer; do not plug the device into a USB hub. Test each USB port on your PC if the first port you try doesn't work. Wake the computer from sleep or hibernation mode, if applicable, and then restart your PC if it still fails to detect the tablet. Press and hold the power button on your Kindle for at least 20 seconds, and then press the power button again after the device shuts off. Procedure to Find Amazon Kindle Fire's Mac Address: From your Amazon Kindle Fire, head to the home screen and on the top right corner you will see an icon which is of 'Settings', tap on the same. Once you tap on the 'Settings', you now need to tap on 'More' as shown in the below screen capture. Now, tap on the option called.

If you're looking for instructions on connecting to a Fire TV instead, see Connect to Fire TV Through ADB.

  • Check for Device Connections Using ADB (Optional)
  • Troubleshooting

Step 1: Enable Developer Options

  1. Go to Settings > Device Options and look for a Developer Options menu. If it's not there, do the following:

    a. Go to Settings > Device Options > About Fire Tablet.b. Tap your Serial Number seven times.c. Return to Device Options. A new menu appears called 'Developer Options.'

  2. Tap Developer options. (2013 models might call this option 'Security.')
  3. Set Developer options and USB debugging to ON.
  • If you have a Kindle Fire 1st Generation, ADB is enabled by default.

Step 2: Install the Kindle Fire Driver (Windows Only)

  1. If you're using Windows, download this Kindle Fire driver: kindle_fire_usb_driver.zip.
  2. After downloading the file, extract the contents into a new folder and double-click the Fire_Devices ABD drivers file.
  3. Proceed through the installation wizard screens to install the driver.

Step 3: Install Android Studio

ADB is available on your computer when you install Android Studio. If you don't already have Android Studio, download and install Android Studio. If you're not using Android Studio, you need to download and install Android SDK platform tools.

Step 4: Connect Your Fire Device to Your Computer with a USB Cable

  1. Using a USB cable, connect your Fire tablet to a USB port on your computer.

    Note that Fire tablets can treat the USB with different transfer options. After connecting the USB cable, swipe down from the top of your tablet to see the USB option used. You might see various notifications, including the USB connection type that was used when you connected the cable. The relevant notification is highlighted in the screenshot below.

    If you don't see 'Connected as Media Device', press Tap for other USB options. Then select Media device (MTP). Later Fire OS versions have a different interface here. If you're using Fire OS 7, select File Transfer.

    Note: If your USB is connected as a Camera (PTP), Android Studio won't recognize the tablet as a device in Android Studio.

    If you don't see the USB connection type in the above notifications, go to Settings > Device Options > Developer Options > USB computer connection. Set this to Media device (MTP). For Fire OS 7, select File Transfer.

  2. When the Allow USB debugging? dialog appears on your tablet, tap OK.

  3. Open Android Studio and look for the device to appear in devices drop-down menu:

    The device's name will use the android.os.Build.MODEL property for the device. KFSUWI refers to Fire HD 10 (2017) tablet. You can see a list of build model names in the Identifying Fire Tablet Devices.

    If you have not selected the 'Allow USB Debugging' dialog on your tablet, the name 'Unknown device' will appear in the devices drop-down menu in Android Studio until you allow debugging.

  4. With the tablet connected, you can now run your app on your tablet by clicking the Run App button in Android Studio.

If you run into issues, see the Troubleshooting section below. Useful mac apps for students.

Check for Device Connections Using ADB (Optional)

Instead of looking in the devices menu in Android Studio, you can also use some ADB terminal commands to confirm that your device is connected. ADB is useful for performing many other operations as well, such as entering sandbox mode or installing other assets. Follow these two sections:

If you skip adding ADB to your PATH, you can also Check for Connected Devices If ADB Isn't In Your PATH.

Add ADB to Your PATH

First, add ADB to your PATH so you can more easily run ADB commands. (Your PATH is an environment variable used to specify the location of the program's executable. If you don't add ADB to your PATH, running ADB commands will require you to browse to the /platform-tools directory to run adb.)

Tip: You can check whether ADB is already added to your PATH by typing adb version from a terminal or command prompt. If you get back version information, then ADB is in your PATH. If the response says adb is an unrecognized command, ADB is not in your PATH.

To add ADB to your PATH on Mac:

  1. Get the path to your Android SDK platform-tools directory:

    1. Open Android Studio and click the SDK Manager button .The location to your Android SDK appears near the top next to Android SDK Location. For example: /Users//Library/Android/sdk

      If this is your first time opening Android Studio, there isn't an SDK Manager button. Instead, at the Welcome to Android Studio prompt, click Configure > SDK Manager and provide the location to the Android SDK.

    2. Copy the path to the SDK and paste it somewhere convenient, such as a text editor.
    3. Add /platform-tools to the end of the path you copied in the previous step. ('platform-tools' is the directory containing the ADB executable.)
    4. Copy the full path to your clipboard.
  2. Use the following command to add ADB to your .bash_profile. Replace with your actual username. Also, make sure the path points to your Android SDK.

    Your .bash_profile file is usually in your user directory, which you can find by typing cd ~ (change to your user directory). Then type ls -a (list all) to show all files, including hidden ones.

    If the file isn't there, simply create one. You can then type open .bash_profile to see the paths listed.

    After you add this PATH to your bash profile, you should see the following in your .bash_profile file:

    (Only instead of johndoe, you will see your own username.)

  3. Fully restart any terminal sessions, and then type adb. If you successfully added ADB to your path, you will see ADB help info rather than 'command not found.'

To add ADB to your PATH on Windows:

  1. Get the path to your Android SDK platform-tools directory:

    1. Open Android Studio and click the SDK Manager button .

      The location to your Android SDK appears near the top next to Android SDK Location. For example: C:UsersAppDataLocalAndroidSdk

      If this is your first time opening Android Studio, there isn't an SDK Manager button. Instead, at the Welcome to Android Studio prompt, click Configure > SDK Manager and provide the location to the Android SDK.

    2. Copy the path to the SDK and paste it somewhere convenient, such as a text editor.
    3. Add /platform-tools to the end of the path you copied in the previous step. ('platform-tools' is the directory containing the ADB executable.)
    4. Copy the full path to your clipboard.
  2. Click your computer's search button (next to Start) and type view advanced system settings.
  3. Click View advanced system settings.
  4. When the System Settings dialog opens, click the Environment Variables button.
  5. Under System Variables (the lower pane), select Path and click Edit.
  6. Do one of the following:

    • On Windows 7 or 8, move your cursor to the farthest position on the right, type ; and then press Ctrl+V to insert the path to your SDK that you copied earlier. It may look like this: ;C:UsersAppDataLocalAndroidSdkplatform-tools. Click OK on each of the three open dialog boxes to close them.
    • On Windows 10, click the New button and add this location.
  7. Restart any terminal sessions, and then type adb. If you successfully added ADB to your path, you will see ADB help info rather than 'command not found.'

Check for Connected Devices

  1. Assuming ADB is added to your PATH, run the following commands:

  2. Confirm that the serial number for your Fire tablet appears in the list of devices. For example:

    On your tablet, your device's serial number is located under Settings > Device Options.

Check for Connected Devices If ADB Isn't In Your PATH

If your terminal doesn't recognize adb as a command (that is, you didn't add ADB to your PATH), you might have to run the commands from the SDK directory that contains ADB.

  1. In Android Studio go to Tools > SDK Manager.
  2. In the SDK Manager dialog box, copy the Android SDK Location.
  3. Browse to this location in your terminal or command prompt. For example:

    Mac

    Windows

    Then go into the platform-tools directory:

    The platform-tools directory contains adb.

  4. Now run the ADB commands as follows:

    Mac:

    Windows:

    The response should list your device's serial number. For example:

    If your Fire tablet is still not detected, you may need to reboot your computer or log out and back in for the changes to take effect.

Troubleshooting

Tablet doesn't appear in list of devices in Android Studio

  1. If you don't see your tablet device in the list of devices in Android Studio, click the devices drop-down menu and select Troubleshoot device connections: Modifier pdf mac.

  2. Click Rescan devices.

    If rescanning devices doesn't detect your Fire tablet as a device, your micro-USB cable might be bad, you might have the wrong USB connection type (e.g, camera instead of media device), or you might not have enabled USB debugging. You can also try restarting your computer and the tablet.

Uninstall the non-ADB Driver (Windows)

If you previously connected a Fire tablet without first enabling ADB on the Fire tablet, you might need to remove the existing USB device driver and force re-installation of the driver. To remove the non-ADB driver:

  1. Using a micro-USB cable, connect your Fire tablet to a USB port on your computer.
  2. On your computer (Windows 10), click the search button (next to the Start menu) and type Device Manager in the search. Then select it in the results. (Other Windows versions have different options for accessing the Control Panel.)
  3. In the Device Manager window, expand Portable Devices.
  4. Right-click the Fire device and then click Properties.
  5. In the Properties window, on the Driver tab, click Uninstall, and then Confirm.
  6. Unplug your Fire tablet from your computer.

Confirm the Fire Driver Is Installed Correctly

You can confirm that the Fire driver is installed correctly by doing the following:

  1. On your computer, click the search button search button (next to the Start menu) and type Device Manager.
  2. In Device Manager, under Fire Devices, verify that that a device appears called Android Composite ADB Interface.

    If your Device Manager shows an Other Devices section with a second Fire device with a yellow alert sign, your computer is listing Amazon's unrecognized ADB module as a separate device. To fix this issue:

    1. Under Other Devices, right-click the Fire device and select Properties.
    2. On the Driver tab of the Properties window, select Update Driver…
    3. Choose to browse for the driver software, then navigate to Let me pick from a list of device drivers on my computer > Show All Devices > Have Disk.
    4. Navigate to the folder where you installed the Amazon driver (typically C:Program Files (x86)Amazon.comFire_DevicesDrivers) and select it.
    5. Ignore the warning regarding installing drivers and proceed.

      You should now correctly see your Fire tablet with the ADB driver installed.

Last updated: Oct 29, 2020

Kindle and other similar devices come with a custom Android OS and that limits many features that you could use to enhance experience on your Android OS. Rooting is particularly most sorted for Kindle as in order to just be able to run it outside the US with full features demands it. You can also access and customize many intrinsic functions of your Android device by rooting it. While root for Kindle came out early using the sparkym3 method which only could be operated via Windows, it is now possible to do the same using Mac or Linux.

A senior XDA member, prokennexusa has helped a lot of Mac users to successfully root their Kindle using an easy to follow, step by step guide. In this post we will be guiding you on How To Root the Kindle Fire 7″ HD on Mac.

You might also want to checkout Best Kindle Chargers and places where your can find Free Kindle Books.

Requirements

1. Mac OS X 10.5.8 or later (32-bit and 64-bit)

2. A Free USB 2.0 or 3.0 port but you should preferably stick to a USB 2.0 port.

3. Your Kindle Fire HD 7″

Getting Started

Download Kindle For Mac

First of, you have to Enable root user in Mac OS X as by default this is disabled. You can get specific and complete instructions on the whole process here.

It is recommended that you use the latest version of Superuser.apk and the SU binary available as a software from XDA developers. In this post we have divided Rooting your Kindle on Mac into 12 simple steps. Any deviation can brick your device, so if you doubt or don't understand any part post a query and we will get back to you.

Step 1: While your Kindle is Unplugged from the USB port, Go-to Kindle, navigate to the pull down options bar, choose More > Security> and make sure that you Enable the ADB by tapping the ON button.

Step 2: Once again, Go to your Kindle, navigate to the pull down options bar, but this time choose More > Device and make sure you Allow Installation of Applications by clicking ON.

Step 3: Go to your Mac workstation, download and Unzip Root MANY ANDROID! There are three different sets of download Versions available for different platforms and make sure you use the correct one, matching your platform. Alternatively, you can download your Mac 64-bit Version 18.5.1 directly from Apple64.zip. Take a close note on the unzip path of this SDK package.

Step 4: Plug-in your Kindle into USB 2.0 port and wait for the drivers to install which only takes a few minutes and is automated on Mac.

Step 5: Open up a browser from your Mac and Download and install Java Platform (JDK) 7u13 . For further information on the process for your Mac navigate to Mac 64-bit JDK 7.13 Install Notes.

Step 6 :Reboot your Mac after installation is complete.

Kindle Fire Mount Sd Card

Step 7: Next thing you will have to do is open up a Terminal window which is like Command Prompt for Mac. Now you are ready for some coding in Terminal window ($ command prompt). So, to begin with, type in the below codes followed by specific instructions.

Code 1:

su –

If you are prompted to enter your Root password, enter it and you will be able to see a # at the command prompt.

Step 8: Go back to the open command prompt at the /RootPackage32or64Folder/# and enter:

Code 2:

Card

Select Option 1, when you are prompted to select one, Run normal methods and ignore errors. While the process is initializing your Kindle will pop up a 'Restore' dialogue box. Click on restore and when it is done your Kindle will reboot automatically.

Note : If you receive ‘can not execute items in the stuff folder', please check to make sure you downloaded the correct package for your platform. The Linux 64-bit package will not work on a 32-bit computer. If you have verified your download and you are still seeing the ‘can not execute items in the stuff folder' message, please post a screen shot here.

Mount Kindle Fire On Mac

Select Option 1, when you are prompted to select one, Run normal methods and ignore errors. While the process is initializing your Kindle will pop up a 'Restore' dialogue box. Click on restore and when it is done your Kindle will reboot automatically.

Note : If you receive ‘can not execute items in the stuff folder', please check to make sure you downloaded the correct package for your platform. The Linux 64-bit package will not work on a 32-bit computer. If you have verified your download and you are still seeing the ‘can not execute items in the stuff folder' message, please post a screen shot here.

Step 9: Type in the code Exit and hit Enter.
Step 10: Finally go back to the Kindle, navigate to the /Apps tab, click on Device, next find and click on Superuser.apk initialize the Superuser daemon.

Step 11: Finally, using a Web Browser on your Kindle Download suchecker.apk to the /RootPackage32or64Folder/#:suchecker.apk. After the download has completed, open a command prompt at the /RootPackage32or64Folder/# enter:

Code 3:

Step 12: After the installation has finished, navigate to your Apps on your Kindle. Launch Root Checker Basic. When you check Root you will be presented with a 'Allow' dialog box, and make sure you allow the Root Checker. If everything goes fine you will see that Superuser.apk working. The below screen shot will give you an idea on how it should look like.

You should now be able to enjoy your rooted Kindle Fire HD and this also confirms the full functionality of your ADB communications. However, before using your Kindle as such, it is absolutely necessary to Disable Amazon OTA (Over the Air) to ensure prolonged root experience on your Amazon Kindle HD. This can be done by following instructions listed here and finally rebooting your Amazon Kindle HD.

You will find Google Play Store missing and this can be dealt with by following the step by step instructions given on How to: Install Google Play Step-by-Step Thread.





broken image