Android 2.3.6无法识别

时间:2012-09-03 15:51:23

标签: android adb

我有一个应用程序,我想在真实设备上测试,我有一个在Android 2.3.6上运行的三星Galaxy Mini,但由于唯一可用的SDK是2.3.3,我选择它作为目标构建。当我插入USB时,Windows确实识别它,但eclipse没有,它不会在设备上安装应用程序,也不会在模拟器运行时显示它。是某种虫子还是什么?

这是清单:

 <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.androidhive"
    android:installLocation="auto"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk android:minSdkVersion="8" />

    <application
        android:icon="@drawable/ng_icon"
        android:label="@string/app_name" >
        <activity
            android:name=".Init"
            android:label="@string/title_activity_main" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".Home"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="com.example.androidhive.HOME" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <activity
            android:name=".CurentNews"
            android:label="@string/title_activity_curent_news" >
            <intent-filter>
                <action android:name="com.example.androidhive.CURENTNEWS" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <activity
            android:name=".News"
            android:label="@string/title_activity_news" >
            <intent-filter>
                <action android:name="com.example.androidhive.NEWS" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
    </application>

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

</manifest>

1 个答案:

答案 0 :(得分:3)

我认为问题出在设备驱动程序中。 可以吗

  1. 检查控制台中“adb devices”命令的输出?
  2. 如果没有 - 检查设备是否安装了whick驱动程序,如有必要,请手动安装AndroidPhone - &gt; ADB调试接口(在系统驱动程序列表中)
  3. 同时检查手机的开发者设置中是否启用了“允许USB调试”。
  4. PS:如果在系统中找不到驱动程序 - 使用SDK Manager下载GoogleUSB驱动程序,它将出现在Android SDK的“Extras”文件夹中。

    祝你好运