General :: Windows 8.1 Preview And Not Working ADB Fastboot

Jul 2, 2013

ive faceed a problem after upgrading to 8.1..Phone doesnt showing in adb or fastboot.

General :: Windows 8.1 preview and not working ADB fastboot


General :: Windows 8 Pro / Android 1.0 - Fastboot USB Not Working

Nov 6, 2012

I'm using a Windows 8 Pro and somehow my fastboot usb isn't working. It installed Android 1.0, but nothing happened after that. I can't flash any kernel with this. Everytime I go fastboot, there's no usb indication, but when I press volume button up or down it states fastboot usb but still can't flash anything.

View 5 Replies View Related

General :: Windows 8.1 - Fastboot Don't Work On Xperia Ray

Jul 5, 2013

I wanted to flash new kernel to my ray but after upgrading my win 8 to 8.1 I can't connect my phone in fastboot (device unrecognized).

View 1 Replies View Related

Android :: Compile Fastboot On Windows

Jul 14, 2010

Specify me the steps to compile fastboot under cygwin to generate fastboot.exe for windows

View 1 Replies View Related

Android :: 1.5 Video API Not Working / No Preview

Jun 22, 2009

I have tried 1.5 video API. I could not make it work. It even can't do preview. Following is my code:
private boolean initializeVideo() { Log.v(TAG, "initializeVideo");
if(Common.mRecordedVideo!=null && Common.mRecordedVideo.exists ()) Common.mRecordedVideo.delete();
File sDir = Environment.getExternalStorageDirectory();
String baseDir = sDir + Common.BASE_DIR;
File sampleDir=new File(baseDir);
if(!sampleDir.canWrite()) // Workaround for broken sdcard support on the device.
sampleDir = new File("/sdcard/sdcard");
try { Common.mRecordedVideo = File.createTempFile(PREFIX, EXTENSION, sampleDir);
} catch(IOException e) { AlertDialog.Builder ab = new AlertDialog.Builder (VideoRecord.this);
ab.setTitle("Error"); ab.setMessage(" can't write audio data to storage");
ab.setIcon(R.drawable.error); ab.setNeutralButton("Close", new DialogInterface.OnClickListener()
{ public void onClick(DialogInterface dialog, int whichButton) { } } );
ab.show(); return false;
} Intent intent = getIntent(); releaseMediaRecorder();
if (mSurfaceHolder == null) { Log.v(TAG, "SurfaceHolder is null");
return false; } mMediaRecorder = new MediaRecorder();
mMediaRecorder.setAudioSource(MediaRecorder.AudioSource.MIC);
mMediaRecorder.setVideoSource (MediaRecorder.VideoSource.CAMERA);
mMediaRecorder.setOutputFormat (MediaRecorder.OutputFormat.THREE_GPP);
mMediaRecorder.setMaxDuration(MAX_RECORDING_DURATION_MS);
mMediaRecorder.setOutputFile (Common.mRecordedVideo.getAbsolutePath());
// Use the same frame rate for both, since internally
// if the frame rate is too large, it can cause camera to become
// unstable. We need to fix the MediaRecorder to disable the support
// of setting frame rate for now.
mMediaRecorder.setVideoFrameRate(20);
mMediaRecorder.setVideoSize(352,288);
mMediaRecorder.setVideoEncoder (MediaRecorder.VideoEncoder.H263);
mMediaRecorder.setPreviewDisplay(mSurfaceHolder.getSurface());
try { mMediaRecorder.prepare();
} catch (IOException exception) { Log.e(TAG, "prepare failed for " );
releaseMediaRecorder(); // TODO: add more exception handling logic here
return false; } mMediaRecorderRecording = false;
return true; } private void startVideoRecording() {
Log.v(TAG, "startVideoRecording"); if (!mMediaRecorderRecording) {
// Check mMediaRecorder to see whether it is initialized or not.
if (mMediaRecorder == null && initializeVideo() == false ) {
Log.e(TAG, "Initialize video (MediaRecorder) failed."); return;
} try { mMediaRecorder.setOnErrorListener(this);
mMediaRecorder.setOnInfoListener(this);
mMediaRecorder.start();
// Recording is now started } catch (RuntimeException e) {
Log.e(TAG, "Could not start media recorder. ", e); return;
} mMediaRecorderRecording = true;
mRecordingStartTime = SystemClock.uptimeMillis();
updateRecordingIndicator(true);
mRecordingTimeView.setText("");
mRecordingTimeView.setVisibility(View.VISIBLE);
mHandler.sendEmptyMessage(UPDATE_RECORD_TIME);
setScreenTimeoutInfinite();
} }

View 2 Replies View Related

Android :: Camera Preview Not Working On G2

Oct 20, 2010

I'm trying to get the camera preview running on my G2.

This is the code I'm testing with, which was taken from the sample code. It is using supplemental code supplied by Wu-Cheng, but its still throwing an error.

CODE:......................

View 14 Replies View Related

Android :: Camera Preview Is Working Properly

Feb 24, 2010

In my Application the camera preview is working properly in both in portrait and in landscape mode. No crashes are occurring, but the users are complaining that the crashes are occurring when they are using the same.

View 1 Replies View Related

Android :: Camera Preview Zoom Not Working

Sep 7, 2010

I've a problem with Camera Preview Zoom. The methods present in Android 2.2, setZoom() is not working to zoom the preview. Is there any another way to do the Zoom in android? I am using the code present in the Android API Demos. Is their any body who has worked on implementing ZoomIn & ZoomOut and got succeed??

View 4 Replies View Related

Android :: Working In Portrait Mode With Camera Preview?

Jun 27, 2009

When do you expect it to get fixed? I am a developer working on http://layar.eu and I had to go through lot of trouble to get the app working in portrait mode with camera preview, using a LOT of rotations. I have managed to get everything rotated to portrait except for the on screen inputmethod which still shows up in landscape. Do you have any suggestions for rotating that?

View 9 Replies View Related

Android :: ADT Plugin And SDK Not Working On Windows 7

Oct 29, 2009

I have a problem getting the Android SDK to work on my new Windows 7 computer. The ADT plugin in Eclipse will not open, when I run SDK setup.exe I do get a window, but settings wont get saved and the app disappears. When I click 'New' in the virtual devices pane. When I run android.bat from a command prompt I get the following error:

-snip- Error: Unable to read AVDs Error: Unable to get the home directory. Make sure the user.home property is set up Error: Unable to get the home directory. Make sure the user.home property is set up com.android.prefs.AndroidLocation$AndroidLocationException: Unable to get the home directory. Make sure the user.home property is set up

-snip- I have a dutch install of windows 7 where the users directory is named differently and already tried to change the HOMEPATH, APPDATA, LOCALAPPDATA and USERPROFILE paths in the registry to the dutch version of the directory. Which didn't work either.

Eclipse version: GALILEO (Eclipse IDE for Java Developers Build id: 20090920-1017)
Android SDK version: Android SDK R3 windows (I tried previous sdk versions. Same problem) Windows 7 Home Premium.

View 12 Replies View Related

Motorola Droid X :: Working In PC Mode - Do Something In Windows?

Jul 24, 2010

What is this "PC mode" that comes up as an option when you plug into a computer? Does it do something in windows? I run Ubuntu and it does nothing when I select it. The manual doesn't mention it, at least not the PDF I downloaded. It covers mass storage and windows media sync but not PC Mode.

View 1 Replies View Related

Android :: Calender Windows Not Working On HomeScreen?

Apr 29, 2010

I just bought the Motorola Milestone for about a week. Initially when I added the Calender as a Widget to my home screen, there is a little open window showing my next appointment(s) for the day or next day. However, I accidentally trashed it and when I tried to add it back to my home screen again, I am unable to get the same and the Calender merely appears as a little icon. Is there any particular setting that I may have missed out?

View 2 Replies View Related

Android :: USB Driver Not Working On Windows 7 64bit

Sep 23, 2010

For some reason my windows 7 64 don't recognize the driver r3. Does anybody have this problem?

View 5 Replies View Related

General :: How To Use Fastboot On Mac OS X

Nov 17, 2011

how to flash a kernel using fastboot on os X. Therefore I've decided to add a new post about that on XDA for those who want/need to use fastboot on mac os X. Example given for a Sony Xperia ARC LT15i. This should work for any SE device but will need different vendor ID value for another Brand.

Installation

- Download and extract Android SDK (let's say on the Desktop for the rest of the explanation)

- Add "Android SDK Platform-Tools" with android SDK Manager

- Download fastboot for mac here http:[url]....

- extract it in android-sdk/platform-tools/

Configuration
Next you need to update the PATH for tools/ and platform-tools/ folder.
- Open Terminal app and type

Code:
nano ~/.bash_profile
- Add the following two lines and change the (username) with the name of your mac os X account name :

[code].....

View 7 Replies View Related

Samsung EPIC 4G :: Galaxy S Drivers Working On Windows 7 64 Bit?

Sep 29, 2010

I got them working at one point, now they don't work, sees the phone like once out of every 10 tries.

View 2 Replies View Related

Android :: Plugins Not Working In Eclipse On Windows 7 64bit

Dec 30, 2009

On my brand new Windows 7 machine, I downloaded Eclipse (Galileo) and several Eclipse plugins (Android's ADT plugin, Subclipse, etc.) After rebooting, neither of these plugins are showing up in the IDE (nothing in the preferences, menus, etc.) but if I click "Installation Details" in the 'About Eclipse' popup, I see all of the plugins listed as Installed Software. (ex. Android DDMS 0.9.5, Subclipse 1.6.5, etc.) How do I get my plugins to work?

View 7 Replies View Related

General :: Flash Rom With Fastboot?

Jul 5, 2012

I have read other tutorials about the fastboot update command, but I do not understand how to make system.img from a zip Rom. How to install a Rom with fastboot? Cwm recovery can't read zip files for some reason.

HTC Explorer A310e

View 1 Replies View Related

General :: Android SDK - Fastboot ADB

Aug 1, 2013

I am trying to setup fastboot adb on my laptop.. i set it up on my pc a while back but my pc is windows 7 and my laptop is windows 8.. i read many things online.. watched youtube.. i cant do it!!

View 5 Replies View Related

General :: How To Go To FastBoot With ClockWorkMod

May 12, 2012

I need go to the FastBoot menu becouse i need change the splash screen - boot image (bootlogo)

If i push + / - / power buttons, always i will go to the ClockWorkMode.

Huawei sonic U8650
Android 2.3.5
Root
ClockWorkMod
OC Kernel

View 9 Replies View Related

General :: Can't Get Fastboot Even With ADB Commands

May 4, 2014

i have root access, and full adb, but i cant get fast boot even with adb commands. i attempted to flash a faulty a20 tablet i had via sd install. and i obviously had a damaged flash, anyhow it wiped the tablet clean, the backlight still lights up. i can turn it on and off, and i can boot the boot loader.

is there anyway out of this, i want to install a recovery, but with no flashboot....

View 5 Replies View Related

General :: How To Use Minimal ADB And Fastboot

Nov 14, 2013

How I can use adb and fastboot on my computer. i

View 1 Replies View Related

General :: Can't Access ADB But Can Use Fastboot?

Jun 16, 2013

What is the cause of that? From my knowledge they use the same driver? ADB cannot detect device but fastboot can... This occurs in both windows 7 and xp.

View 4 Replies View Related

Samsung Galaxy I7500 :: How To Get ADB Working For Device In Windows Vista?

Nov 14, 2010

I got a new I7500 and wants to experiment with this. I could not get the adb working with this phone. The samsung software does not solve the adb issue. How can I get I7500 detected by Windows Vista as ADB device?

View 1 Replies View Related

General :: GNex - Fastboot Does Not Work

Jan 30, 2013

I have had my GNex since it was released. However, I just got a new computer. I am trying to set up everything again on my new computer. I got the drivers working to a certain extent. I can get adb to work, however fastboot does not work.

How to get fastboot working?

Screenshot showing adb clearly works prior to bootloader, but it stops working after going into bootloader. It seems to lose connection to my phone once it is in the bootloader. I tried this multiple times.

View 1 Replies View Related

General :: Can't Access Fastboot Without ADB Command

May 22, 2014

My device only supports adb on recovery but its sideload. How to boot fastboot in recovery? Can't access fastboot without adb command. Volume keys not working.

View 5 Replies View Related

General :: Xperia U Locked Fastboot

Apr 22, 2014

I have Xperia U and blocked Fastboot can i unlocked?

View 2 Replies View Related

General :: HTC One M7 - Fastboot Doesn't Work But ADB Does

Oct 14, 2013

My phone's usb works pretty much perfect, adb and the usb storage are working (HTC One M7). But when i do "adb reboot-bootloader" the pc just says "the usb device fails to enumerate or something like that. Everything works except for Fastboot and i dont know why. Has it something to do with Win 8.1? I never tried it on another machine before.

View 1 Replies View Related

General :: Can't Find Fastboot In Android SDK R14

Oct 21, 2011

I have "Android SDK tools" and "Android SDK Platform-tools" installed using the SDK Manager, and fastboot is nowhere to be found.The new r14 SDK seems to be missing this tool, what the replacement is?

View 9 Replies View Related

General :: 470 Fastboot Mode Started

May 11, 2014

I tried flashing a font from romtoolbox lite using flashify but my phone only displays

"[470] fastboot mode started"
"[520] udc_start()"

I can't access download mode or recovery mode. What do i need to do? I also can't turn it off.

View 1 Replies View Related

General :: Fastboot Mode In Karbonn A18

Nov 20, 2012

I want to install ClockWorkMod Recovery on my Karbonn A18, i tried doing it using SP Flash Tool, but it gives various Errors, I want to know how can i get into FastBoot Mode in A18 so that i can install it through their ?

View 4 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved