Questions tagged [google-pixel]

The Google Pixel is a line of consumer electronics from Google that either run Chrome OS or Android. The Pixel lineup includes tablets, computers, and cellular phones.

98 questions
2
votes
3 answers

Android Google Pixel 6 Pro device Navigating from app to outside browser issue

we are trying to navigating from our Mobile App page to browser apps like chrome/firefox (using https url) Please find the below sample code. My Sample Code: passing https url only. Intent urlObjectIntent = new Intent(Intent.ACTION_VIEW,…
2
votes
1 answer

react-gtm-module not posting the event params

I'm using Google Tag Manager to handle a Facebook Pixel. That pixel should get fired through a Custom Event with custom params: { make, model } and custom conditions: { make equals ford, model equals focus }. I have two basic implementations (each…
2
votes
2 answers

glCreateShader() crashes on Android 11 / Pixel 5

I have a NativeActivity program which works fine on a OnePlus 3T running Android 9. It crashes on startup in Android 11 running on a Pixel 5. I'm using Visual Studio 2019 and SDK Build-tools 29.0.2 and Platform-Tools 30.0.4. The AndroidManifest.xml…
Jon Watte
  • 6,579
  • 4
  • 53
  • 63
2
votes
1 answer

How to remove white color circular border in google devices like pixel

any one having idea how to make icon in google pixel without white border circular. I can see chrome icon doesn't have circular border. How to make it any help ? You can see in screenshot google chrome icon looks full occupancy but other…
2
votes
0 answers

WebCamTexture on Pixel 4's-Front Facing Camera is always Night Vision (Black and White)

I can't even find this setting within the devices default camera app. In Unity I have an app which I am just using the WebCamTexture and displaying it on a quad. The back camera is fine. Full color but when I set it to front facing camera it is…
iiidefektiii
  • 163
  • 1
  • 12
2
votes
0 answers

Android Live Transcribe API

Is there any API available for using Google's Live Transcribe feature in custom Android Apps to run on supported devices?
S_S
  • 1,276
  • 4
  • 24
  • 47
2
votes
1 answer

How to mimic curved edges of device in app?

Is there any way to import the curved edges from the device into an app? As you can see in this link, some devices have the screen itself withcurved edges, but when I open my app in those devices, the edges turn to straight corners and fill the…
blankface
  • 41
  • 1
2
votes
0 answers

is it possible to disable the ADB debugging authorizations system?

I have rooted pixel device with android pie, I am trying to automate few things with ADB and I am struggling with an authorization issue. manually it works, I connect to the device through ADB then I approve the auth key manually in the device. when…
Naor Malca
  • 143
  • 1
  • 10
2
votes
0 answers

How to fix onClientConnectionState() - status=22 clientIf=8 error inside BluetoothGATT?

Hi I am working on BLE connection with BluetoothAdapter I have found that my prob gets disconnect after some hours in Android O+ devices. After analysing Log file BluetoothGATT is returning onClientConnectionState() - status=22 clientIf=8 status.…
2
votes
1 answer

BLE ScanFilter for device address does not work on Android 9 (Google Pixel XL)

We are filtering our BLE scan on a number of MAC addresses by List filters = new ArrayList(); for(String addr : mBleAddrs) { if(BluetoothAdapter.checkBluetoothAddress(addr)) { Log.d(TAG,…
poppe
  • 599
  • 6
  • 13
2
votes
0 answers

Google Photo API, retrieving original picture from google pixel Portrait Mode

Google Pixel allows to use a "Portrait Mode" that uses some post-processing to create a bokeh effect and blur the background (see for example https://ai.googleblog.com/2018/11/learning-to-predict-depth-on-pixel-3.html). Once uploaded to google…
Pierpaolo
  • 1,721
  • 4
  • 20
  • 34
2
votes
0 answers

NsdManager never discover any services on Google Pixel 3 (Pie)

Same code works on Samsung S8 and Sony XZ, but not on Google Pixel 3. I start the discovery with NsdManager with: nsdManager.discoverServices("_test_service._tcp.", NsdManager.PROTOCOL_DNS_SD, discoveryListener) The discoveryListener gives…
Lalle
  • 676
  • 12
  • 30
2
votes
0 answers

Serial number or IMEI got changed in android

We are using the Serial number and IMEI in an application and we have observed that there are many Pixel, Samsung and Motorola devices where either the serial number or IMEI has been changed. What could be reason ? Due to OS update ? Access this…
Hardik Bambhania
  • 1,732
  • 15
  • 25
2
votes
2 answers

Why is there a layout preview difference between Pixel and Pixel 2 in Android Studio even though they have same screen size and pixel density

I have been trying to understand why these two devices even though having same screen size and pixel density behave differently. Please Note: The Font size and Display size are set to "Default" on both the devices. EDIT 1: I have created the…
2
votes
1 answer

Camera Permission always denied without dialog shown on Google Pixel when running instant app

I am porting an existing application to an instant app that requires a camera permission to run. On Pixel 2 device and Samsung S8 the permission dialogue gets shown and I can request the permission. On the Pixel 1 Device the dialogue does not get…