kindle-fire

How can I change the Read/Write Permissions of /mnt/SDcard folder on Kindle Fire?

生来就可爱ヽ(ⅴ<●) 提交于 2020-01-22 12:35:29
问题 I am trying to develop Amazon In-app in android. For this i download the sample code for from this site https://developer.amazon.com/sdk/in-app-purchasing/sample-code/button-clicker.html. This article suggests that we have to put a file amazon.sdktester.json in mnt/sdkcard folder of device. For this i read article from this site https://developer.amazon.com/sdk/fire/connect-adb.html#InstallApp and do the same. But when i tried to push file on sdcard the eclipse gives me following error: [2012

How can I change the Read/Write Permissions of /mnt/SDcard folder on Kindle Fire?

蹲街弑〆低调 提交于 2020-01-22 12:34:42
问题 I am trying to develop Amazon In-app in android. For this i download the sample code for from this site https://developer.amazon.com/sdk/in-app-purchasing/sample-code/button-clicker.html. This article suggests that we have to put a file amazon.sdktester.json in mnt/sdkcard folder of device. For this i read article from this site https://developer.amazon.com/sdk/fire/connect-adb.html#InstallApp and do the same. But when i tried to push file on sdcard the eclipse gives me following error: [2012

SDK options is not available for Kindle Fire in Eclipse?

不羁岁月 提交于 2020-01-22 11:58:09
问题 I have followed the procedure to set up the development environment for Kindle Fire in Eclipse from the Amazon Site. Though I added the add-on URL in 'Manage Add-On Site' option correctly, still Android SDK Manager is not displaying the following options for downloading: Android 4.2.2 (API 17) SDK Platform ARM EABI v7a System Image Intel x86 Atom System Image Kindle Fire HD 7″ (3rd Generation) Kindle Fire HDX 7″ (3rd Generation) Kindle Fire HDX 8.9″ (3rd Generation) Now I am able to see only

Android - Image picker doesn't work on Kindle Fire?

醉酒当歌 提交于 2020-01-02 04:23:05
问题 I have the following code to display an imagepicker. After user picks an image onActivityResult gets called, to return me the data for the selected image. On kindle however, I get a resultCode of 0, and data as null. Anyone else has noticed this problem before? This problem happens only on kindle fire. startActivityForResult(new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.INTERNAL_CONTENT_URI), SELECT_PICTURE); 回答1: I'm running into this exact same issue. Prior to the

Debugging android apps on the kindle fire

笑着哭i 提交于 2019-12-28 07:58:45
问题 Is debugging Android applications remotely from eclipse supported for Kindle Fire platform? 回答1: According to Amazon's FAQ on Kindle Fire, Kindle Fire has USB debugging enabled by default. To connect Kindle Fire to your Android Debug Bridge (ADB) follow the instructions in this PDF.If you are working with Windows 7 you will need to download and use this driver. They are also providing USB drivers for download for Windows 7 PC. Moreover, we can also emulate Kindle Fire specs on Android

Android app in Amazon Market not showing on Kindle Fire

给你一囗甜甜゛ 提交于 2019-12-23 05:49:08
问题 What is the trick to getting an app to show in the Amazon Market on the Kindle Fire? I have submitted my android app to Amazon Marketplace and it was approved months ago. When I search for that app (through Amazon Marketplace) on my Motorola Xoom, or my wife's Nexus One, I am able to find it. Search on the Kindle, its nowhere to be found. I read Amazon's suggestions at https://developer.amazon.com/help/faq.html regarding the Kindle Fire and it doesn't give any hints why it wouldn't show up. I

How to detect 7" Android tablet in code

三世轮回 提交于 2019-12-21 22:36:39
问题 I am trying to detect 7" tablets in my code (i.e. Kindle Fire & Nook Color). However, simply testing for minimum dimensions 1024x600 is not good, because then the Galaxy Nexus would pass this test as well. Anybody has experience with detecting this kind of information? Thanks, Igor EDIT: I have found one way to detect Kindle Fire & Nook Color devices with the following code: Activity activity = (Activity) activityContext; activity.getWindowManager().getDefaultDisplay().getMetrics(metrics);

GCM is not working on Kindle fire devices: java.lang.UnsupportedOperationException: Device does not have package com.google.android.gsf

﹥>﹥吖頭↗ 提交于 2019-12-21 20:34:48
问题 Its throwing exception while calling GCM.register(this,SENDER_ID); java.lang.UnsupportedOperationException: Device does not have package com.google.android.gsf What is alternative option of GCM on Amazon devices? 回答1: Kindle Fire don't have "Google Play Services" library installed, so GCM won't work. Try ADM instead. 回答2: GCM have some limitation, In android device must have google play store, second one is android device configure with google account (This limitation in some devices.). You

Android Emulator Reports 600x1024 MDPI as XLarge?

☆樱花仙子☆ 提交于 2019-12-18 12:29:45
问题 I am currently trying to test an existing application for compatibility with the soon to be released Amazon Kindle Fire tablet. They say to set the emulator at 600x1024 and LCD Density to 169 (https://developer.amazon.com/help/faq.html?ref_=pe_132830_21362890#KindleFire although in email they said 160 instead of 169) and that it should report out as being "large" and not "xlarge" (this I have from a back and forth email exchange with their support team where I'm complaining it does not work).

Nexus 7 and Kindle Fire HD, think different

时间秒杀一切 提交于 2019-12-18 11:48:20
问题 I'm developing an application for tablet 7 inch Kindle Fire HD and Nexus 7 . These two applications are the same size and the same screen resolution. However, I run my application, it is very different. Why? it seems this is because the nexus 7 is detected as TVDPI, and the Kindle Fire HD is HDPI. How to have a same rendering based on a model 1280 * 800? Thank you 回答1: Well, it seems you've already discovered why the two have differences, it's because they report different density scale