Fixed
Status Update
Comments
be...@google.com <be...@google.com>
ga...@google.com <ga...@google.com> #4
Same for me, macOS 10.12.2, 13" 2016 Macbook Pro w/ Touchbar
sdk tools: 25.2.4
platform-tools 25.0.3
fastboot version 0e9850346394-android
sdk tools: 25.2.4
platform-tools 25.0.3
fastboot version 0e9850346394-android
ad...@gmail.com <ad...@gmail.com> #6
I can reproduce this issue as well on Touch Bar MacBook Pro, and also when issue occurs Touch Bar is no longer responsive and stuck to terminal UI being displayed, instead of switching to front app. Also, unable to recover touch bar by fore quitting via activity monitor. Also cannot force quit fastboot when it is hung
be...@google.com <be...@google.com> #7
Same for me. Adb works fine but fastboot hangs infinitely (New Macbook Pro 15, 2016 with touchbar).
jp...@google.com <jp...@google.com> #8
can confirm this happens on my 15inch 2016macbook pro, even with USB hub.
Seems to get stuck in mach_msg_trap which also has the "benefit" of so freezing safari....
I have heard it will work with a vm so will try in Linux and see what happens..
Seems to get stuck in mach_msg_trap which also has the "benefit" of so freezing safari....
I have heard it will work with a vm so will try in Linux and see what happens..
be...@google.com <be...@google.com> #9
This is also a real problem for myself too. 2016 Macbook Pro with Touch Bar using USB-C to USB-C cable and using the latest platform-tools. ADB is fine, fastboot practically fucks my system requiring a hard reboot.
be...@google.com <be...@google.com> #10
Same here, fastboot seems to cause the touchbar to no longer work.
jp...@google.com <jp...@google.com> #11
Confirmed on Macbook Touchbar. Any fastboot command forces me to hard reboot my entire computer. ADB seems fine. Guess it's time to break out my old linux. 😣
ga...@google.com <ga...@google.com> #14
ek9852's fix has been merged, and will make it into the next platform tools release.
da...@gmail.com <da...@gmail.com> #15
I add '-Dfile.encoding=UTF-8' in the 'Android Studio\bin\studio64.exe.vmoptions file' to change the default VM encoding.It's ok before the 'Target-2.3 Release'
th...@gmail.com <th...@gmail.com> #16
Any idea when the next release of platform-tools will occur?
th...@gmail.com <th...@gmail.com> #17
upgrading to api 28 and to the new java 1.8 damaged all my files, I opened the style file and I found java codes from another files in it, I opened a java file and i found lines from gradle setting, I opened gradle settings and I found weird logos and shit, I worked my ass for a fucking year on this project, test your fucking shit. lucky I have an old backup., but I lost weeks of work.
how on earth you can open a new bloody empty project, and you open main activity layout and you find the stupid error telling you failed to render the layout, you can't even put a text box, not even HELLO WORLD is visible..A NEW PROJECT..you shouldn't push your stupid broken update to the public.
how on earth you can open a new bloody empty project, and you open main activity layout and you find the stupid error telling you failed to render the layout, you can't even put a text box, not even HELLO WORLD is visible..A NEW PROJECT..you shouldn't push your stupid broken update to the public.
ko...@gmail.com <ko...@gmail.com> #18
kchq/vsiva: time to stop waiting for the atrace folks and just ship a new platform-tools? they've had two weeks now...
Description
Windows 10.
gradle plugin com.android.tools.build:gradle:2.1.2
compileSdkVersion 24
buildToolsVersion "24.0.1"
targetSdkVersion 24
STEPS TO REPRODUCE:
1) Create any sample android project, enable jackjill support.
2) Add
if(!"\u0401\u0436\u0438\u0433".equals("Ёжиг")) {
throw new RuntimeException("Encoding fail");
}
into any executed code.
3) Note that there is design-time warning that it compares identical strings.
4) Run the project and see that when jack compiler is enabled it throws the exception and when it is disabled it works as expected.
EXPECTED RESULTS:
"\u0401\u0436\u0438\u0433".equals("Ёжиг") must always be true
OBSERVED RESULTS:
"\u0401\u0436\u0438\u0433".equals("Ёжиг") is false when jackjill is in use