Questions tagged [nexus-7]

The Nexus 7 is the first tablet by Google in the Nexus line of devices.

The Nexus 7 is a tablet computer designed and developed by Google in conjunction with Asus. It is the first tablet in the Google Nexus series, a line of consumer devices implementing the Android operating system and built by an original equipment manufacturer (OEM) partner.

Nexus 7 (2012):

  1. 7" WXGA (1280x800) Screen
  2. Nvidia Tegra 3 quad-core graphics chip
  3. 1 GB of RAM
  4. 8 or 16 GB of internal storage.

Incorporating built-in Wi-Fi and near field communication (NFC) connectivity, it is marketed as an entertainment device with integration with Google Play, serving as a platform for multimedia consumption of e-books, television programs, films, games, and music. The tablet was the first device to have shipped with Android version 4.1, nicknamed "Jelly Bean".

Nexus 7 (2013):

  1. 7" LED Backlight WUXGA (1920x1200) Screen
  2. Qualcomm® Snapdragon™ S4 Pro 8064 Quad-Core, 1.5 GHz
  3. 2 GB of RAM
  4. 16 or 32 GB of internal storage.
261 questions
3
votes
1 answer

Face Detection not working on Nexus7 4.2

I'm building an android camera app, and using the FaceDetectionListener. My app has no problems on XperiaZ - LgoptimusBlack- GalaxyNexus4 and some other devices. But with the Google Nexus 7 it gave's me an error: …
bob
  • 31
  • 4
3
votes
0 answers

How to emulate Android touch input with an Arduino?

I'm attempting to setup a custom gaming interface with a MakeyMakey and Construct 2 through a rooted Nexus 7 running CyanogenMod 10.1. I've built a robot which uses the Nexus tablet in place of its face. Players will then be able to interact with…
user610455
  • 89
  • 1
  • 12
2
votes
2 answers

ADB shell monkey command changing device orientation lock

I'm using the adb shell command monkey to launch one application followed by another. It all works fine, except for one odd side effect where the orientation lock on the device is set back to auto-rotate. We usually have the tablets locked to…
Dan Gardner
  • 1,069
  • 2
  • 13
  • 29
2
votes
0 answers

onTokenRefereshed() method is not called on Nexus 7 API level 18 android version 4.3

I am using FCM in my project. This is done by following documentation. It works nice on android version 4.4 and above. But I get the null value using FirebaseInstanceId.getInstance().getToken() after installing and clearing data on Nexus 7 with…
Nava
  • 368
  • 2
  • 11
2
votes
4 answers

which version of adb interface for android "nexus 7" 2013

developing an app for the 2013 nexus 7 with android studio on windows 8.1. i have the app running on a few different devices. when adding a driver, i get a dialog: with the clockwork mod manufacturer, i get other choices like: google nexus 7 adb…
Ray Tayek
  • 9,841
  • 8
  • 50
  • 90
2
votes
0 answers

Getting Ad request successful, but no ad returned due to lack of ad inventory error for loading DFP ads in Nexus 7 device

I am unable to load DFP ads in Nexus 7 tablet device. I am getting failed message: Ad request successful, but no ad returned due to lack of ad inventory Using SMART_BANNER adsize I have tested on some smart phones(Google nexus,nexus 5,s3,s4) and…
Anshu
  • 41
  • 9
2
votes
0 answers

Drawable setColorFilter not work on Nexus 7

I want to change color of android design drawable to blue. This is piece of my code in application class onCreate method: Drawable drawable = getResources().getDrawable(R.drawable.rating_not_important); drawable.setColorFilter(0xff1565c0,…
Forough
  • 262
  • 4
  • 20
2
votes
0 answers

In nexus 7 (OS 5.0), drop down showing grayed out and no css style supporting

I'm using webview for my app and that working fine for android devices. Recently I do see a issue with drop down on Nexus devices that it shows grayed out list of option. I applied the css style like: select…
Pankaj
  • 833
  • 12
  • 35
2
votes
1 answer

DFP not serving Ads for Google Nexus7 using SmartBanner

I am using DFP in Android. It is delivering ads for mobile emulators but it is not delivering the ads for Google Nexus 7 (1920x1200 with 320 dpi) device. Below is the code which I am using. final FrameLayout adLayout = (FrameLayout)…
itsrajesh4uguys
  • 4,610
  • 3
  • 20
  • 31
2
votes
2 answers

How to get Nexus 7 serial number programmatically?

We've developed an app that needs to identify every device uniquely. We first thought of using IMEI and we're obtaining it using the TelefonyManager's getDeviceId() method. But one user reported that the app doesn't work and it seems we weren't able…
2
votes
0 answers

HTML5 Audio doesn't play until I physically rotate Nexus 7

I'm trying to get HTML5 audio sprites working on a Nexus 7 using the Android Chrome browser. To change the audio being played, I change the source of the audio player, then reload the audio player. I then have to detect two 'timeupdate' events to…
Stereoscopic
  • 185
  • 1
  • 1
  • 9
2
votes
3 answers

Google Play developer console - nexus 7 is supported but cannot install apk

I have published my first camera app, and in developer console currently there are 4282 supported devices and 0 excluded. Three Nexus 7 models are listed in the supported list (1.Google Nexus 7 - flo, 2.Google Nexus 7 - deb and 3.Nexus 7), however i…
j.c
  • 2,825
  • 3
  • 31
  • 45
2
votes
0 answers

How to get perf_event results for 2nd Nexus7 with Krait CPU

all. I try to get PMUs information such as Instructions, Cycle, Cache miss and etc. on 2nd Nexus7 with Krait CPU. The perf tool is not working correctly. Therefore, I am using follow a sample source code in perf_event tutorials. #include…
happybrown
  • 31
  • 4
2
votes
2 answers

Video Recording on tab (Nexus 7) fails

I am creating a video recorder functionality for my application. I have used the following code for preparing the camera and media recorder api: private boolean prepareCameraRecorder() { // BEGIN_INCLUDE (configure_preview) int numCameras =…