运行'.PhotoApp'时出错:AndroidManifest.xml不存在或具有不正确的根标记[关闭]

问题描述 投票:0回答:1

我无法运行我的应用,它在androidmanifesto.xml中显示错误请帮我我应该对代码进行什么更改。

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

        <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
        <uses-permission android:name="android.permission.INTERNET" />

        <application
            android:name=".PhotoApp"
            android:allowBackup="true"
            android:icon="@mipmap/ic_launcher"
            android:label="@string/PhotoApp"
            android:roundIcon="@mipmap/ic_launcher_round"
            android:supportsRtl="true"
            android:theme="@style/AppTheme">
            <activity
                android:name=".EditImageActivity"
                android:screenOrientation="portrait"
                android:theme="@style/AppTheme.NoActionBar">
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />

                    <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
            </activity>
            <meta-data
                android:name="preloaded_fonts"
                android:resource="@array/preloaded_fonts" />

        </application>

    </manifest>
android xml android-studio apk android-manifest
1个回答
0
投票

androidmanifesto.xml重命名为AndroidManifest.xml

© www.soinside.com 2019 - 2024. All rights reserved.