Obsolete
Status Update
Comments
hb...@gmail.com <hb...@gmail.com> #2
If it works fine in the emulator then it's a Nexus bug. Officially this website only supports AOSP builds, not nexus builds, so you should contact support.google.com/nexus and raise this there. Unofficially, someone like JBQ may spot this and pass the issue over to someone who might be able to do something with it. But I can't guarantee that will happen, or when.
jb...@android.com <jb...@android.com> #3
Agree with comment #1 - this may or may not be fixable in AOSP, it's hard to tell, and it should also be reported to Google as the issue might be in their variant of the camera code. I'm still keeping this open.
This report applies to a Nexus device, and the issue tracker where you reported it specializes in issues within the Open Source source code of the Android platform.
We are not able to provide support for Nexus devices in this issue tracker. Please use the Google Support site for Nexus help athttp://support.google.com/nexus/ or report this issue in the Google Mobile Help Forum at https://productforums.google.com/forum/#!forum/mobile/
This report applies to a Nexus device, and the issue tracker where you reported it specializes in issues within the Open Source source code of the Android platform.
We are not able to provide support for Nexus devices in this issue tracker. Please use the Google Support site for Nexus help at
sh...@gmail.com <sh...@gmail.com> #4
I am also facing this issue. please help me if you got any solution or any alternate way to capture video with nexus 7 os 4.3
ar...@gmail.com <ar...@gmail.com> #5
iam also facing this issue with adobe phonegap (android 4.3)
si...@gmail.com <si...@gmail.com> #7
Hi,
I came here viahttps://issues.apache.org/jira/browse/CB-4471 and just wanted to note that I'm experiencing the same problem in the Galaxy Nexus (also on Android 4.3) while using PhoneGap/Cordova.
Since I don't know if anyone of you has, I reported this problem in the Mobile Help Forums now:https://productforums.google.com/d/msg/mobile/hGKSYdS1C30/1jh8tgHBBfQJ
We'll see if that leads to anything...
The Nexus support site doesn't even list my phone anymore and online has a customer service number which probably isn't very helpful when trying to report bugs in their code.
I came here via
Since I don't know if anyone of you has, I reported this problem in the Mobile Help Forums now:
We'll see if that leads to anything...
The Nexus support site doesn't even list my phone anymore and online has a customer service number which probably isn't very helpful when trying to report bugs in their code.
br...@gmail.com <br...@gmail.com> #8
add Uri originalUri = Uri.fromFile(tempDir);
intent.putExtra(MediaStore.EXTRA_OUTPUT, originalUri);
intent.putExtra(MediaStore.EXTRA_OUTPUT, originalUri);
mw...@gmail.com <mw...@gmail.com> #9
if we add EXTRA_OUTPUT then that breaks for most all older cameras.. What a pain. Can't believe google camera doesn't follow there own sdk. I would expect this of a 3rd party camera but a nexus camera? Come on google read your documentation.
en...@google.com <en...@google.com>
li...@gmail.com <li...@gmail.com> #10
data.getAction() should be used instead.
Description
This sample code worked fine on Android 4.2 :
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
startActivityForResult(new Intent(MediaStore.ACTION_VIDEO_CAPTURE), 1);
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
}
data.getData() is null on Android 4.3. Reproduced on Nexus 4, Nexus 7 and Nexus 10.
Works fine in the emulator.