Android Studio中的Android模拟器无法显示我的应用

时间:2016-07-25 21:53:44

标签: java android android-emulator

我目前正在使用Android Studio处理Android应用程序。当我在Nexus 5 API 21 x86仿真器上运行我的代码时,仿真器不会显示我尝试调试的应用程序。我进入了所有应用程序,但我仍然找不到我要测试的应用程序。但是,模拟器仍会显示我正在处理的上一个项目的应用程序。在编译gradle和启动模拟器时,日志不会显示任何错误。

通过研究其他帖子,我相信它可能与我正在运行的模拟器版本有关。我不确定是否是这种情况,如果是我将如何解决它。我在下面和我的gradle.build粘贴了我的清单副本。请让我知道出了什么问题,这个问题在过去的几天一直让我感到烦恼。

 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.jamescho.androidgame"
    android:versionCode="1"
    android:versionName="0.5" >

    <uses-permission android:name="android.permission.WAKE_LOCK" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="17" />

    <application
        android:icon="@drawable/bxbx_char"
        android:label="Bxbx">
        <activity
            android:name="com.Bxbx.BxbxGame.Game"
            android:configChanges="keyboard|keyboardHidden|orientation"
            android:label="Bxbx"
            android:screenOrientation="portrait">
             <intent-filter>
                 <action android:name="android.intent.action.MAIN"/>
                 <category android:name="android.intent.category.LAUNCHER"/>
             </intent-filter>
        </activity>
    </application>

</manifest>

build.gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 17
    buildToolsVersion "19.1.0"

    defaultConfig {
        applicationId "com.jamescho.androidgame"
        minSdkVersion 8
        targetSdkVersion 17
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
        }
    }
}

dependencies {
    compile 'com.android.support:support-v4:18.+'

2 个答案:

答案 0 :(得分:0)

从Android Studio,转到AVD管理器(工具&gt; Android&gt; AVD)。找到您的虚拟设备,然后在操作下,选择向下三角形并点击划像数据。这应该删除旧的测试APK。

如果旧应用仍然存在,请尝试删除旧虚拟设备并创建新虚拟设备。如果它仍在那里,您可能在启动应用程序时选择了错误的虚拟设备。

您还应该尝试清除默认测试设备。在“运行”&gt;“编辑配置”下,选择默认运行配置。在常规选项卡上,转到部署目标选项下的底部,然后选择打开选择目标部署对话框,然后保存并重试。

答案 1 :(得分:0)

我得到了解决方案。 您必须更改adb.exe文件 Download adb.exe

文件位置:C:\ Users [USER] \ AppData \ Local \ Android \ sdk \ platform-tools

享受