应用程序既不安装也不在模拟器上运行

时间:2015-06-12 09:16:15

标签: android android-studio emulation

我在Android Studio上创建了我的第一个Android Hello World。但是当我在模拟器上运行它时,它既没有运行也没有在模拟器上安装..每次只显示会话''仅在日志中出错..我已经多次重启了。没用,

这是我的模拟器设置

this is my emulator Setting

我的清单

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.administrator.facebooklogin" >

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

</manifest>

我也更改了设备和皮肤,但没有用,我没有找到适当的会话错误解决方案。

1 个答案:

答案 0 :(得分:0)

您刚刚开始使用Explore Genymotion,这是Android开发的Android虚拟设备的更快,更好的替代方案。

相关问题