Status Update
Comments
ma...@gmail.com <ma...@gmail.com> #2
This is a particularly hard device to come by - do you happen to have access to the device? If so could you provide us with the output of: adb shell dumpsys media.camera > info.txt
Thanks!
uc...@google.com <uc...@google.com>
en...@google.com <en...@google.com>
ma...@gmail.com <ma...@gmail.com> #3
Stacktrace:
Caused by: java.lang.IllegalArgumentException: Can not get supported output size under supported maximum for the format: 34
at androidx.camera.camera2.internal.SupportedSurfaceCombination.getSupportedOutputSizes(SupportedSurfaceCombination.java:355)
at androidx.camera.camera2.internal.SupportedSurfaceCombination.getSuggestedResolutions(SupportedSurfaceCombination.java:197)
at androidx.camera.camera2.internal.Camera2DeviceSurfaceManager.getSuggestedResolutions(Camera2DeviceSurfaceManager.java:198)
at androidx.camera.core.CameraX.calculateSuggestedResolutions(CameraX.java:943)
at androidx.camera.core.CameraX.bindToLifecycle(CameraX.java:293)
at androidx.camera.lifecycle.ProcessCameraProvider.bindToLifecycle(ProcessCameraProvider.java:227)
Below are some findings based on our debugging
When Dex is connected
previewConfig.getMaxResolution() is returning "731x411" as maxSize.
Inside Preview.Builder.build() -> Default_MAX_resolution is set to "CameraX.getSurfaceManager().getPreviewSize()" which is 731x411
this is being picked as maxSize.
While rendering maxSize is 731x411 and minSize is 640x480 and below are available outputSizes
0 = {Size@11860} "4032x3024"
1 = {Size@11861} "3984x2988"
2 = {Size@11862} "4032x2268"
3 = {Size@11863} "3024x3024"
4 = {Size@11864} "2976x2976"
5 = {Size@11865} "3840x2160"
6 = {Size@11866} "3264x2448"
7 = {Size@11867} "4032x1960"
8 = {Size@11868} "2880x2160"
9 = {Size@11869} "3264x1836"
10 = {Size@11870} "2160x2160"
11 = {Size@11871} "2560x1440"
12 = {Size@11872} "2224x1080"
13 = {Size@11873} "2048x1152"
14 = {Size@11874} "1920x1080"
15 = {Size@11875} "1440x1080"
16 = {Size@11876} "1088x1088"
17 = {Size@11877} "1280x720"
18 = {Size@11878} "1024x768"
19 = {Size@11879} "1056x704"
20 = {Size@11880} "960x720"
21 = {Size@11881} "960x540"
22 = {Size@11882} "720x720"
23 = {Size@11883} "800x450"
24 = {Size@11884} "720x480"
25 = {Size@11885} "640x480"
26 = {Size@11886} "352x288"
27 = {Size@11887} "320x240"
28 = {Size@11888} "256x144"
29 = {Size@11889} "176x144"
and couldn't find any size in this range.
When Dex not connected
minsize = 640x480
maxsize = 1920x1080
0 = {Size@11836} "4032x3024"
1 = {Size@11837} "3984x2988"
2 = {Size@11838} "4032x2268"
3 = {Size@11839} "3024x3024"
4 = {Size@11840} "2976x2976"
5 = {Size@11841} "3840x2160"
6 = {Size@11842} "3264x2448"
7 = {Size@11843} "4032x1960"
8 = {Size@11844} "2880x2160"
9 = {Size@11845} "3264x1836"
10 = {Size@11846} "2160x2160"
11 = {Size@11847} "2560x1440"
12 = {Size@11848} "2224x1080"
13 = {Size@11849} "2048x1152"
14 = {Size@11850} "1920x1080"
15 = {Size@11851} "1440x1080"
16 = {Size@11852} "1088x1088"
17 = {Size@11853} "1280x720"
18 = {Size@11854} "1024x768"
19 = {Size@11855} "1056x704"
20 = {Size@11856} "960x720"
21 = {Size@11857} "960x540"
22 = {Size@11858} "720x720"
23 = {Size@11859} "800x450"
24 = {Size@11860} "720x480"
25 = {Size@11861} "640x480"
26 = {Size@11862} "352x288"
27 = {Size@11863} "320x240"
28 = {Size@11864} "256x144"
29 = {Size@11865} "176x144"
and we have 12 available sizes in this range
Camera2DeviceSurfaceManager.java:: getPreviewSize()
mCameraSupportedSurfaceCombinationMap.get(cameraId).getSurfaceDefinition().getPreviewSize() = "1920x1080"
cameraId=0
ap...@google.com <ap...@google.com> #4
The issue root cause is that CameraX will default filter out sizes smaller than 640x480. For Preview, the max size will be limited to under display size. I checked the HW spec info for the issue related devices. Display size of FUJITSU F-04J/F-05J is 360x640. That will result int that no size exists in the conditions that is larger or equal to 640x480 and smaller or equal to 360x640.
A temporary workaround for this situation is to use Preview.Builder#setTargetResolution() to set a size smaller than 640x480 to bypass the problem.
For device FUJITSU arrowsM04, I checked its HW spec info and its display size I found is 1280x720. It seems that the problem should not exist in the device.
Could you confirm that the problem exist on arrowsM04 device? What will be the returned value when using Display#getRealSize to obtain the display size?
[Deleted User] <[Deleted User]> #5
> A temporary workaround for this situation is to use Preview.Builder#setTargetResolution() to set a size smaller than 640x480 to bypass the problem.
OK. I will try it.
> Could you confirm that the problem exist on arrowsM04 device?
We receive the crash report (Crashlytics) that this crash has occurred on arrowsM04.
We don't have this device so we can't confirm that the problem really exist on arrowsM04.
> What will be the returned value when using Display#getRealSize to obtain the display size?
We can't investigate it for the same reason.
Thank you.
ap...@google.com <ap...@google.com> #6
This issue happened on devices that the display size is smaller than 640x480. In original auto-resolution mechanism, supported sizes smaller than 640x480 will be default filter out.
The auto-resolution mechanism encodes the guaranteed configurations tables in CameraDevice#createCaptureSession(SessionConfiguration). It defines that the PREVIEW size is the small one of the device display size and 1080p. The PREVIEW size will be the maximal size limitation for Preview use case. The reason it limits the size to display size and 1080p is the stream output in display size or 1080p has been able to provide good enough preview quality. Therefore, auto-resolution mechanism will limit the selected size to be smaller than the small one of the device display size and 1080p.
With above two conditions, in this issue, all sizes smaller than 640x480 have been filter out, therefore, there is no size smaller than the display size 320x240 can be selected to use. And cause the exception.
Solution:
When the display size is smaller than 640x480, auto-resolution mechanism won't filter out those small sizes smaller than 640x480. This makes those small size be left and can be selected for the Preview use case on small display devices.
The solution has been merged and will be included in next CameraX release.
jm...@google.com <jm...@google.com> #7
Hello.
This crash still occurs.
- CAMERAX VERSION: 1.0.0-beta4
- ANDROID OS BUILD NUMBER: Android 7.1.1
- DEVICE NAME: FUJITSU F-02H
We receive following crash report from FUJITSU F-02H. So far We have received this crash report only from F-02H.
java.lang.IllegalArgumentException
Can not get supported output size under supported maximum for the format: 34
androidx.camera.camera2.internal.SupportedSurfaceCombination.getSupportedOutputSizes (SupportedSurfaceCombination.java:349)
androidx.camera.camera2.internal.SupportedSurfaceCombination.getSuggestedResolutions (SupportedSurfaceCombination.java:197)
androidx.camera.camera2.internal.Camera2DeviceSurfaceManager.getSuggestedResolutions (Camera2DeviceSurfaceManager.java:198)
androidx.camera.core.CameraX.calculateSuggestedResolutions (CameraX.java:949)
androidx.camera.core.CameraX.bindToLifecycle (CameraX.java:351)
androidx.camera.lifecycle.ProcessCameraProvider.bindToLifecycle (ProcessCameraProvider.java:230)
(our application's package name).CameraFragment.bindCameraUseCases (CameraFragment.java:174)
jm...@google.com <jm...@google.com> #8
Could you help to provide the following information to clarify the issue?
1. Is the full name of the device Fujitsu Arrows NX F-02H that has a 1440x2560 display?
2. Please help to provide the supported output sizes of ImageFormat.PRIVATE that is obtained by StreamConfigurationMap#getOutputSizes(int).
jm...@google.com <jm...@google.com> #9
- Is the full name of the device Fujitsu Arrows NX F-02H that has a 1440x2560 display?
Yes
- Please help to provide the supported output sizes of ImageFormat.PRIVATE that is obtained by StreamConfigurationMap#getOutputSizes(int).
Since we don't have this device, we'll try to collect this information in the next version of our app. The next version will be released later this month.
[Deleted User] <[Deleted User]> #10
Hello.
- Please help to provide the supported output sizes of ImageFormat.PRIVATE that is obtained by StreamConfigurationMap#getOutputSizes(int).
We have collected the output of the device where the crash occurs.
Device1
- Model : arrows Be F-05J
- Android Version : 7.1.1
- Supported output sizes of ImageFormat.PRIVATE
CameraId 0: 480x480
CameraId 1: 2048x1536 ,1920x1080 ,1280x720 ,960x720 ,640x480 ,320x240 ,176x144
Device2
- Model : Fujitsu arrows M04
- Android Version : 7.1.1
- Supported output sizes of ImageFormat.PRIVATE
CameraId 0: 480x480
CameraId 1: 2048x1536 ,1920x1080 ,1280x720 ,960x720 ,640x480 ,320x240 ,176x144
Additional Information
CameraX version : 1.0.0-beta04
We collect the supported output sizes by following code.
val errorString = buildString {
append("The supported output sizes of ImageFormat.PRIVATE: ")
(requireContext().getSystemService(Context.CAMERA_SERVICE) as CameraManager).apply {
cameraIdList.forEachIndexed { index, cameraId ->
val msg = if (VERSION.SDK_INT >= VERSION_CODES.M) {
val configurationMap =
getCameraCharacteristics(cameraId).get(CameraCharacteristics.SCALER_STREAM_CONFIGURATION_MAP)
val sizes = configurationMap?.getOutputSizes(ImageFormat.PRIVATE)
"CameraId $index: ${sizes?.joinToString(" ,")}"
} else {
"CameraId $index: This device version is under M."
}
append(msg)
}
}
}
me...@bnaya.net <me...@bnaya.net> #11
me...@bnaya.net <me...@bnaya.net> #12
I tried to find the device specs and both 720x1280
size display. For the camera id 0 device, it is a different case that the display size is larger than 640x480
but the device only supports a 480x480
size. The case also caused the same IllegalArgumentException and was also fixed by 1.0.0-beta04
release. Before 480x480
size would be filtered out and then caused the IllegalArgumentException. After it was merged, the 640x480
size threshold was removed and then the 480x480
size would be kept and selected to use.
It looks like 1.0.0-beta04
release had been used to collect the supported sizes information. But the issue should have been fixed by 1.0.0-beta04
release. Did you only check the device model name to collect the supported sizes information or collect the information when the IllegalArgumentException issue happens again?
CameraX's 1.0.0-beta04
version. Maybe you can also consider to upgrade to the latest 1.0.0-rc01
version for your application. Thanks.
ph...@gmail.com <ph...@gmail.com> #13
Did you only check the device model name to collect the supported sizes information or collect the information when the IllegalArgumentException issue happens again?
We collect informations only from the device on which IllegalArgumentException happened.
Our latest app uses CameraX version 1.0.0-beta10
and this issue still occurres.
However we don't receive crash report from Fujitsu arrows Be F-05J
or Fujitsu arrows M04
so far. (This doesn't mean this issue is fixed on these devices because our app is heavily rely on camera so these device's user wouldn't use our app anymore.)
Instead, we receive crash report from
- Model : Fujitsu F-03K
- Android Version : 7.1.2
- Supported output sizes of ImageFormat.PRIVATE
CameraId 0 : 480x480
CameraId 1 : 2048x1536 ,1920x1080 ,1280x720 ,960x720 ,640x480 ,320x240 ,176x144
pe...@gmail.com <pe...@gmail.com> #14
I missed some settings when I simulated the issue by robolectric test so that I was not able to reproduce it. Now, I can reproduce the issue if the device only supports one 480x480 resolution. I'm working on the solution and target to make it included in next release.
ma...@gmail.com <ma...@gmail.com> #15
Branch: androidx-main
commit 69d15dff7bb857ee33a0f643ff42a0f8bc475ab2
Author: charcoalchen <charcoalchen@google.com>
Date: Fri Jan 08 18:30:03 2021
Fixed IllegalArgumentException issue happened when all preview supported sizes are smaller than 640x480 and display size is larger than 640x480.
Do not filter out sizes smaller than 640x480 when all preview supported sizes are smaller than 640x480 and display size is larger than 640x480.
Relnote:"Fixed IllegalArgumentException issue happened when all preview supported sizes are smaller than 640x480 and display size is larger than 640x480."
Bug: 150506192
Test: SupportedSurfaceCombinationTest
Change-Id: I2a63ce8e2ad42a9cc060c8635ac3603bf440b1ec
M camera/camera-camera2/src/main/java/androidx/camera/camera2/internal/SupportedSurfaceCombination.java
M camera/camera-camera2/src/test/java/androidx/camera/camera2/internal/SupportedSurfaceCombinationTest.java
en...@google.com <en...@google.com> #16
jm...@google.com <jm...@google.com> #17
ma...@gmail.com <ma...@gmail.com> #18
ERROR: Unable to create a plug-in (e00002be)
How can I fix it?
Thanks for any help.
pr...@gmail.com <pr...@gmail.com> #19
wh...@gmail.com <wh...@gmail.com> #20
al...@gmail.com <al...@gmail.com> #21
bl...@gmail.com <bl...@gmail.com> #22
pi...@gmail.com <pi...@gmail.com> #23
ma...@gmail.com <ma...@gmail.com> #24
NEW PROBLEM: I think that a similar problem is in the adb because when I issue adb shell I receive the following error:
adb E 11-05 17:05:17 601 15446 usb_osx.cpp:152] Unable to create an interface plug-in (e00002be)
Different from the fastboot in platform-tools 26.0.2, adb works despite this error.
wa...@google.com <wa...@google.com> #25
ap...@google.com <ap...@google.com> #26
Branch: sdk-release
commit 2a75ddf513caf9f971dbecd4474094d5c0f8fcb6
Author: Josh Gao <jmgao@google.com>
Date: Mon Nov 06 13:29:02 2017
Update platform-tools version to 27.0.0.
Bug:
Test: none
Change-Id: I1849f0df04af390e8aed716262d2be20efdc3491
M sdk/plat_tools_source.prop_template
li...@gmail.com <li...@gmail.com> #27
Android Debug Bridge version 1.0.39
Revision 3db08f2c6889-android
I install the latest platform-tools via homebrew
I test on my 2016 MacBook Pro 15' with macOS 10.13.1
fastboot still can't work normally
br...@gmail.com <br...@gmail.com> #29
ap...@google.com <ap...@google.com> #30
Branch: master
commit 4592d6f91c24d4cd9f5599c98eebabcb4c3cefcb
Author: Josh Gao <jmgao@google.com>
Date: Mon Nov 06 13:29:02 2017
Update platform-tools version to 27.0.0.
Bug:
Test: none
Change-Id: I1849f0df04af390e8aed716262d2be20efdc3491
(cherry picked from commit 2a75ddf513caf9f971dbecd4474094d5c0f8fcb6)
M sdk/plat_tools_source.prop_template
en...@google.com <en...@google.com> #31
o0...@gmail.com <o0...@gmail.com> #32
I hate high Sierra.
jm...@google.com <jm...@google.com> #33
ja...@gmail.com <ja...@gmail.com> #34
ja...@gmail.com <ja...@gmail.com> #35
ma...@gmail.com <ma...@gmail.com> #36
n2...@gmail.com <n2...@gmail.com> #37
ma...@gmail.com <ma...@gmail.com> #38
n2...@gmail.com <n2...@gmail.com> #39
wa...@google.com <wa...@google.com> #40
chmod +x ./fastboot
Then you should be able to execute it:
./fastboot devices
ma...@gmail.com <ma...@gmail.com> #41
...
ERROR: usb_read failed with status e00002ed
FAILED (status read failed (Undefined error: 0))
finished. total time: 7.613s
wa...@google.com <wa...@google.com> #42
gr...@gmail.com <gr...@gmail.com> #43
And can't see my tablet.
Both, tablet and usb cable, are working fine on my windows.
lu...@gmail.com <lu...@gmail.com> #44
lu...@gmail.com <lu...@gmail.com> #45
ma...@gmail.com <ma...@gmail.com> #46
fe...@gmail.com <fe...@gmail.com> #47
ia...@gmail.com <ia...@gmail.com> #48
sh...@gmail.com <sh...@gmail.com> #49
[Deleted User] <[Deleted User]> #50
ju...@gmail.com <ju...@gmail.com> #51
(instead of ./fastboot, drag and drog the fastboot file from the folder to the terminal after chmod +x)
ju...@gmail.com <ju...@gmail.com> #52
ma...@gmail.com <ma...@gmail.com> #53
"""
wiping userdata...
/Users/Admin/Library/Android/sdk/platform-tools/mke2fs failed with status 1
mke2fs failed: 1
error: Cannot generate image for userdata
"""
is this error related to this issue?
ji...@google.com <ji...@google.com> #54
jm...@google.com <jm...@google.com> #55
ma...@gmail.com <ma...@gmail.com> #56
fe...@gmail.com <fe...@gmail.com> #57
gr...@gmail.com <gr...@gmail.com> #58
ab...@gmail.com <ab...@gmail.com> #59
6b...@gmail.com <6b...@gmail.com> #60
kn...@gmail.com <kn...@gmail.com> #61
ro...@gmail.com <ro...@gmail.com> #62
sr...@gmail.com <sr...@gmail.com> #63
Getting a similar error in adb
"adb E 12-06 00:49:22 16767 1879237 usb_osx.cpp:152] Unable to create an interface plug-in (e00002be)"
Anyway related?
fe...@gmail.com <fe...@gmail.com> #64
n2...@gmail.com <n2...@gmail.com> #65
Ive a;lo tried #40 and #63 but in #63. It was no fastboot to replace and still not working even after just putting it in afterward to /usr/local/bin location.
ja...@gmail.com <ja...@gmail.com> #66
n2...@gmail.com <n2...@gmail.com> #67
I'm used just a adb & fastboot files without installing plateform-tools and that's why I don't have the binary. Plus, I'm using the command ----->
Paste this into Terminal:
touch ~/.bash_profile; open ~/.bash_profile
Paste this into your text editor:
export PATH=${PATH}:/Applications/Android
making it able to use in any folder plus not having to use the command "./" in front.
For others reading, change /Applications/Android to where the files "adb and fastboot" are located.
tl...@fernandomiguel.net <tl...@fernandomiguel.net> #68
$ brew cask info android-platform-tools
android-platform-tools: 26.0.2
/usr/local/Caskroom/android-platform-tools/26.0.2 (1,831 files, 25.5MB)
en...@google.com <en...@google.com> #69
tl...@fernandomiguel.net <tl...@fernandomiguel.net> #70
en...@google.com <en...@google.com> #71
#### 27.0.0 (December 2017)
+ Combines the fastboot fixes from 26.0.1 for macOS 10.13 hosts and from
26.0.2 for Pixel 2 devices.
#### 26.0.2 (October 2017)
+ Add fastboot support for Pixel 2 devices. (But reintroduce the macOS 10.13
fastboot bug fixed in 26.0.1.)
al...@gmail.com <al...@gmail.com> #72
ca...@gmail.com <ca...@gmail.com> #73
I have MacOS High Sierra, and after connecting to a device remotely by calling adb connect 192.168.x.x it says "connected to device xxxx:port_number" but after that I cannot see any device connected and "adb devices" returns nothing.
Connecting over USB works just fine.
en...@google.com <en...@google.com> #74
ja...@gmail.com <ja...@gmail.com> #76
vi...@gmail.com <vi...@gmail.com> #77
ja...@gmail.com <ja...@gmail.com> #78
no...@gmail.com <no...@gmail.com> #79
va...@gmail.com <va...@gmail.com> #80
lu...@gmail.com <lu...@gmail.com> #81
ba...@gmail.com <ba...@gmail.com> #82
ce...@gmail.com <ce...@gmail.com> #83
t1...@gmail.com <t1...@gmail.com> #84
bo...@gmail.com <bo...@gmail.com> #85
ho...@gmail.com <ho...@gmail.com> #86
#6/
#80
ia...@gmail.com <ia...@gmail.com> #87
uc...@google.com <uc...@google.com> #88
please provide below info if this issue reproduces again
1. Host operating system version details
2. SDK Platform tools version
3. ./fastboot --version
4. Android device details
bl...@gmail.com <bl...@gmail.com> #89
1. OSX version: 10.13.3
2. SDK Platform tools version 27.0.1
3. ./fastboot --version: 0.0.1-4500957
4. Android device: Amazfit Stratos Watch 2, (device enters in fastboot mode but it is not listed using ./fastboot devices)
ma...@gmail.com <ma...@gmail.com> #90
2. SKD Platform tools version 27.0.1
3. fastboot versions:
- 27.0.0-4455170
- 9dc0875966c0-android
- 0.0.1-4500957
4. Android device: Amazfit Stratos Watch 2, (device enters in fastboot mode but it is not listed using ./fastboot devices)
va...@gmail.com <va...@gmail.com> #91
SDK Platform tools version 27.0.1
./fastboot --version
fastboot version 0.0.1-4500957
./fastboot devices
- no devices
Android device: ASUS Zenpad Z170C (Android 5.0.1)
fr...@gmail.com <fr...@gmail.com> #92
platform-tools_r27.0.1-darwin
LG G3 Europe (lg-d855)
fastboot --version
fastboot version 0.0.1-4500957
Installed as /Users/toto/Documents/lg/platform-tools/fastboot
Toto:platform-tools toto$ fastboot devices
Toto:platform-tools toto$
(no output)
./adb devices works fine
va...@gmail.com <va...@gmail.com> #93
are you going to fix that? Thanks! :)
en...@google.com <en...@google.com> #94
va...@gmail.com <va...@gmail.com> #95
Then we restart the device in fastboot mode: doesn't work.
Really Google can't solve that issue?! :)
wf...@gmail.com <wf...@gmail.com> #96
OSX 10.13.4 (17E202)
SDK Platform tools version 27.0.1
fastboot version 0.0.1-4500957
OnePlus 3T running Android 8.0.0
be...@gmail.com <be...@gmail.com> #97
su...@gmail.com <su...@gmail.com> #98
ss...@gmail.com <ss...@gmail.com> #99
wi...@gmail.com <wi...@gmail.com> #100
ru...@gmail.com <ru...@gmail.com> #101
OSX 10.13.5 (17F77)
SDK platform-tools_r28.0.0-darwin
fastboot version 28.0.0-4797878
Galaxy s6 | Android 7
ga...@gmail.com <ga...@gmail.com> #102
ga...@gmail.com <ga...@gmail.com> #103
Come on Google do something about it !!!
al...@demyo.com <al...@demyo.com> #104
sh-3.2# ./fastboot devices
ERROR: Unable to create a plug-in (e00002be)
da...@gmail.com <da...@gmail.com> #105
da...@gmail.com <da...@gmail.com> #106
ma...@gmail.com <ma...@gmail.com> #107
fastboot version
ed...@gmail.com <ed...@gmail.com> #108
ku...@gmail.com <ku...@gmail.com> #109
[Deleted User] <[Deleted User]> #110
ra...@gmail.com <ra...@gmail.com> #111
ra...@gmail.com <ra...@gmail.com> #112
dr...@gmail.com <dr...@gmail.com> #113
dr...@gmail.com <dr...@gmail.com> #114
sa...@gmail.com <sa...@gmail.com> #115
th...@gmail.com <th...@gmail.com> #116
1. OSX version: 10.14.2
2. SKD Platform tools version: n/a (using fastboot light install)
3. fastboot version:
- 28.0.1-4986621
4. Android device: Nvidia Shield TV
zl...@gmail.com <zl...@gmail.com> #117
ERROR: Couldn't create a device interface iterator: (e00002bd)
ERROR: Couldn't create a device interface iterator: (e00002bd)
ERROR: Couldn't create a device interface iterator: (e00002bd)
1. OSX version: 10.14.2
2. SKD Platform tools version: n/a (using fastboot light install)
3. fastboot version:
- 28.0.1-4986621
4. android device: anything, does not matter.
zl...@gmail.com <zl...@gmail.com> #118
OSX Version: 10.14.4 Beta (18E194d)
sh...@gmail.com <sh...@gmail.com> #119
ca...@gmail.com <ca...@gmail.com> #120
va...@gmail.com <va...@gmail.com> #121
Darwin Kernel Version 18.5.0; root:xnu-4903.251.3~3/RELEASE_X86_64 x86_64
Every fastboot command returns:
ERROR: Couldn't create a device interface iterator: (e00002bd)
ma...@gmail.com <ma...@gmail.com> #122
Tried multiple versions of fastboot and it has the same issue.
ko...@gmail.com <ko...@gmail.com> #123
$ fastboot devices
ERROR: Couldn't create a device interface iterator: (e00002bd)
macOS: 10.14.4
fastboot: 28.0.2-5303910
wa...@embest.net <wa...@embest.net> #124
ERROR: Couldn't create a device interface iterator: (e00002bd)
ERROR: Couldn't create a device interface iterator: (e00002bd)
ERROR: Couldn't create a device interface iterator: (e00002bd)
ERROR: Couldn't create a device interface iterator: (e00002bd)
➜ ~ fastboot --version
fastboot version 28.0.2-5303910
ay...@gmail.com <ay...@gmail.com> #125
$ fastboot devices
ERROR: Couldn't create a device interface iterator: (e00002bd)
ym...@gmail.com <ym...@gmail.com> #126
ma...@gmail.com <ma...@gmail.com> #127
fastboot version 28.0.2-5303910
~/Downloads/crosshatch-pq2a.190405.003 ᐅ fastboot devices
ERROR: Couldn't create a device interface iterator: (e00002bd)
ERROR: Couldn't create a device interface iterator: (e00002bd)
{my_device_id} fastboot
Still seeing the same kernel console output:
`default 22:37:38.850733 -0700 kernel 495549.216174 fastboot@(null): IOUSBUserClientLegacy::start: missing entitlement com.apple.ibridge.control`
I'm guessing not _everyone_ is seeing this, else it'd be a higher sev/pri?
fr...@gmail.com <fr...@gmail.com> #129
fastboot@(null): IOUSBUserClientLegacy::start: missing entitlement com.apple.ibridge.control
fr...@gmail.com <fr...@gmail.com> #130
[Deleted User] <[Deleted User]> #131
th...@gmail.com <th...@gmail.com> #132
Status
Fixed
?
le...@google.com <le...@google.com> #133
Observing the same error while flashing on MAC Sierra ERROR: Couldn't create a device interface iterator: (e00002bd)
wo...@gmail.com <wo...@gmail.com> #134
welp.
le...@gmail.com <le...@gmail.com> #135
Version 28.0.3-5475833
Installed as /Users/lengxianfeng/Library/Android/sdk/platform-tools/adb
~/Library/Android/sdk/platform-tools/adb nodaemon server
adb E 06-05 11:10:31 23487 106568 usb_osx.cpp:159] Unable to create an interface plug-in (e00002be)
Terminated: 15
ko...@gmail.com <ko...@gmail.com> #136
it...@gmail.com <it...@gmail.com> #137
4c...@gmail.com <4c...@gmail.com> #138
ja...@gmail.com <ja...@gmail.com> #139
fo...@gmail.com <fo...@gmail.com> #140
fo...@gmail.com <fo...@gmail.com> #141
ig...@gmail.com <ig...@gmail.com> #142
Version 29.0.4-5871666
Installed as /Users/####/Library/Android/sdk/platform-tools/adb
adb E 10-29 10:24:48 22256 240260 usb_osx.cpp:159] Unable to create an interface plug-in (e00002be)
adb E 10-29 10:24:48 22256 240260 usb_osx.cpp:206] Unable to create a device plug-in (e00002be)
on macOS 10.15
kt...@gmail.com <kt...@gmail.com> #143
Io
Description
ERROR: Unable to create a plug-in (e00002be)
When looking at the logs for the kernel I see this:
057562.289317 fastboot@(null): IOUSBUserClientLegacy::start: missing entitlement com.apple.ibridge.control
Running against a Pixel XL. Also occasionally get the same from adb shell, though usually can still connect (though not always annoyingly).
Perhaps macOS now requires the specific entitlement to access the USB?