我目前正在使用Android Studio的Android應用程序。當我在Nexus 5 API 21 x86仿真器上運行我的代碼時,仿真器不顯示我正在嘗試調試的應用程序。我進入了所有的應用程序,但我仍然無法找到我想要測試的應用程序。但是,模擬器仍然會顯示我正在處理的以前項目中的應用程序。在編譯gradle和啓動模擬器時,日誌不會顯示任何錯誤。Android Studio中的Android模擬器不顯示我的應用程序
從研究其他職位,我相信這可能與我正在運行的模擬器的版本有關。我不確定是否是這種情況,以及我是如何解決這個問題的。我已經粘貼了我的清單副本和我的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.+'
看着gradle信息(Android Studio的底部)它安裝成功嗎? – auval