現在Androidスタジオを使用してAndroidアプリケーションを開発中です。 Nexus 5 API 21エミュレータでコードを実行すると、エミュレータはデバッグしようとしているアプリケーションを表示しません。私はすべてのアプリケーションに入りましたが、テストしようとしているアプリケーションはまだ見つかりません。しかし、エミュレータでは、まだ私が作業していた以前のプロジェクトのアプリが表示されます。 gradleをコンパイルしてエミュレータを起動しても、ログにエラーは表示されません。Androidスタジオの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>
とAndroid Studioから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.+'
グラデーション情報(Android Studioの一番下)を見ても正常にインストールされますか? – auval