Jared Price
Jared Price

Reputation: 5375

Unable to run Android application on Motorola XT907

I'm having issues running my Android application on a Motorola XT907 phone. I'm using Eclipse. USB debugging is enabled on the device, and I was able to get my application on two other phones, yet I'm having trouble with this one.

Eclipse is set up so that I have to select the device when I run the application.

In my manifest, minSdkVersion is 14, and targetSdkVersion is 19. The phone I'm using is running 4.4.2.

In the project properties, the Project Build Target is set to Android 4.4.2.

I'm running Windows 8.

Here is what I tried so far:

Lastly, I have tried manually installing driver software, but I am unable to do this properly. This was my procedure:

This is where I run into an issue. I get a dialog with the title "Select Device" that says "The folder you specified doesn't contain a compatible software driver for your device. If the folder contains a driver, make sure it is designed to work with Windows for x64-based systems."

Does anyone know how to solve this issue?

Upvotes: 1

Views: 738

Answers (2)

PedroHawk
PedroHawk

Reputation: 630

try this:

  • on your phone, activate usb debugging (and enable ADB);
  • connect the phone to the same network of your pc. connect USB too.
  • in your command prompt go to your adb.exe folder (.../sdk/platform-tools/) and execute adb connect (your mobile IP)

I use this on my Samsung nexus without drivers installed.

Upvotes: 2

fpanizza
fpanizza

Reputation: 1589

Did you try the driver from the motorola site of this phone :

https://motorola-global-portal.custhelp.com/app/answers/prod_answer_detail/a_id/89608/p/30,6720,8577

?

Upvotes: 1

Related Questions