简体   繁体   English

我无法运行我的应用程序Android Studio

[英]I can not run my application Android Studio

Can you help me please? 你能帮我吗?

When I try to run, the compiler show me this. 当我尝试运行时,编译器会向我显示。 Some idea? 有想法吗 Thanks 谢谢 在此处输入图片说明

This is the AndroidManifest 这是AndroidManifest

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

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

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

        <activity android:name=".Infoclase"></activity>

    </application>

</manifest>

清理您的项目并重建它。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM