Fire Tv Changelogfasrangry



The settings in your Android Manifest file determine where your app is installed on Fire devices. Two storage locations are possible:

  • External storage (such as an SD card)
  • Internal storage (using the device's memory)

Image: Amazon Fire TV. Here’s a list of popular channels available for Amazon’s Fire TV, Fire TV Cube, and Fire TV Stick media players. The list includes movie, TV, streaming video, and music. Most Amazon Fire TV developers build apps for both Google Play and the Amazon Appstore, using the same Android-based code for both app markets and devices. Because Amazon devices don't use Google services (they use Amazon services and APIs instead), you might need to target your code in different ways. Additionally, within Fire OS, there are. Amazon Fire TV (2nd Gen) was a slim designed box discontinued in 2018, replaced by the ever-growing Fire TV Stick (mostly due to the success of the 2nd Gen. Fire TV Stick of 2016). Nov 05, 2018 Amazon Fire TV Tips, Tricks and Hidden Features: 12 secrets you might not know about the Fire TV and Fire TV Stick, including all the best hacks you need to make the most of your new streaming gadget.

Fire TV Stick doesn't have external storage, but Fire TV (Gen 1 and Gen 2, but not Gen 3) does provide external storage options through a memory card slot.

Generally, your app should specify external storage as the default install location.

Best Practices

As a best practice, most apps should specify preferExternal for the installLocation Instalar java windows 10. in the Android Manifest file. If left unspecified, your app will be installed on internal storage.

Filling up internal storage can lead to:

  • Fewer app installs
  • Poor app ratings
  • Negative customer experiences

Some users may have abundant space available in external storage, but if an app's Manifest does not specify preferExternal, the app will be installed internally. As a result, users get prompted with low storage warnings or cannot install the app at all, which leads to user frustration.

Selecting preferExternal helps ensure the greatest user base for your app and a better user experience on Fire devices.

How to Specify External Storage

In the AndroidManifest.xml of your app, inside the <manifest> tag, add the installLocation attribute and set its value to preferExternal. Here's an example:

The installLocation parameter has several values available:

installLocation value Description
preferExternalRecommended for most apps. Install your app on external storage when available. If external storage is full, install the app to internal storage (if available). The user can manually move the app later by selecting it from Settings > Apps & Games > Manage All Applications.
internalOnly Install the app only to internal storage. If there is not enough room in internal storage, the install will fail. The app cannot be manually moved later by the user. Not recommended for most apps. Choose this option only for the types of apps described in the next section.
auto Install to internal storage by default. However, if internal storage is full, install the app to external storage (assuming external storage is available). The user can manually move the app later by selecting it from Settings > Apps & Games > Manage All Applications.

Note that even though the APK file is installed on external storage, all databases, private user data, optimized .dex files, and extracted native code are stored on internal storage.

See App Install Location in the Android documentation for more information.

When to Select Internal Storage

Most apps should select preferExternal for the installLocation. However, DRM-protected media apps are an exception:

  • If your app plays DRM-protected media, DRM resources may become unstable if USB storage becomes unavailable.
  • If your app plays DRM-protected media, either do not include installLocation at all, or set its value to internalOnly.

In addition to DRM-protected media apps, the following types of applications should never be installed on external storage:

  • Services
  • Alarm Services
  • Input Method Engines
  • Account Managers
  • Sync Adapters
  • Device Administrators
  • Broadcast Receivers listening for 'boot completed' message
  • Live Wallpapers (not supported on Fire OS)
  • App Widgets (not supported on Fire OS)

See the App Install Location documentation in Android for more details.

Fire TV External Storage Settings

Fire TV (Generation 1) supports USB external storage and Fire TV (Generation 2) includes a microSD slot for external storage. On these devices, settings are provided for users to manage connected external storage.

Fire Tv Stick

Users can also move internally stored apps to the SD card:

Handling secondary downloads in your app

For apps that perform their own secondary downloads as part of first run or at any other time, these downloaded files are usually stored where the APK file was installed on the device. If the app was installed on external storage, the APK file will be on external storage.

Fire

Some applications, particularly games, use secondary downloads containing additional textures, levels, or other asset files. If you are handling this download in your app code, such as part of first run initialization, use the Android PackageManager getApplicationInfo method to retrieve the ApplicationInfo class.

The ApplicationInfo class contains the location of the APK (sourceDir) and the public parts of the source directory, including the resources and manifest (publicSourceDir). If the app has been installed on external storage, these paths will point to that location and indicate where users should install the additional downloaded content.

If your app uses installLocation='preferExternal' to install a 40MB APK onto external storage, but then stores a 1GB downloaded data file to internal storage because the app uses the ApplicationInfo dataDir path, this would defeat the purpose of using external storage and quickly fill up the device's internal storage, leading to customer frustration. Therefore make sure the secondary downloads use the sourceDir for the download path.

Specifying Install Location with Unity

Unity is one of the most popular tools for creating games for the Amazon Appstore. Unity supports setting the install location through the Player Settings Inspector for Android. To configure your app install location on external storage:

  1. From your Unity project, click File-Build Settings….
  2. From the Build Settings dialog, select Android in the Platform list and click the Player Settings… button to display the inspector.

  3. Open the Other Settings section and look for the Install Location setting. preferExternal is usually the default – this is almost always the best choice.

YoYo Games’ Gamemaker:Studio also uses preferExternal as the default for Android projects. Although you can manually change this default, it's recommended that you leave it as is.

Other engines and development frameworks provide similar options. Consult the documentation for the tool you are using to make sure you set the installLocation to preferExternal in the APK manifest.

Last updated: Oct 29, 2020

Implementing an Android app that renders well on a television (or that behaves properly on both a tablet and a television) requires some attention to user interface layout.

This document provides technical information for building your UI layouts on the Amazon Fire TV platform. See Design and User Experience Guidelines for general guidelines on TV design.

Screen Size and Resolution

Many Android devices such as Fire tablets have a fixed physical size and a single resolution. This is not the case with Amazon Fire TV devices, to which you can connect a 720p or 1080p screen of any size.

The mechanism in Android to specify an activity layout in absolute coordinates independently of the video output resolution is to use density independent units (dp). Android scales the graphic resources so that the size remains constant independently of the screen resolution.

The following table shows the pixel size, density and display resolution for various video outputs connected to an Amazon Fire TV device.

TV settingOutput resolution (pixels)Render surface (pixels)Density identifierscreen density (dp)Display resolution (dp)Screen size identifier
1080p1920 x 10801920 x 1080xhdpi320960x540large
720p1280 x 7201920 x 1080xhdpi320960x540large
480p640 x 4801920 x 1080xhdpi320960x540large

Orientation

The orientation of the Amazon Fire TV device never changes, and requests for the rotation or orientation on the device return these results:

MethodResult
Display.getRotation()0 (ROTATION_0)
Display.getOrientation() (deprecated)0 (ORIENTATION_UNDEFINED)

Fire Tv Channels

Resource Configurations

Fire Tv And Firestick

Free download total video converterupstart. If you design your app to run on platforms other than Amazon Fire TV, such as tablets, you can create different layouts and drawables for each platform, and store them in subdirectories of res/ named for various platform and device configurations. For more information on using these resource configurations, see the Android best practices guide for Supporting Multiple Screens.

The following table describes the resource configurations available for the Amazon Fire TV platform.

ConfigurationValue
Smallest widthsw540dp
Available Widthw960dp
Available Heighth540dp
Screen Sizelarge
Screen aspectlong
Screen orientationland (TV apps are always landscape)
UI modetelevision
Night modenotnight
Screen pixel densityxhdpi
Touchscreen typenotouch
Keyboard availabilitykeyssoft
Primary text input methodnokeys
Navigation key availabilitynavexposed
Primary non-touch navigation methoddpad
Platform versionv17

Last updated: Oct 29, 2020