合并清单错误

时间:2017-10-08 15:46:52

标签: android manifest

它不会让我继续下去。我为tools:value声明了一个随机值,然后它告诉我我需要声明tools:replace="android:value"。这只是一个无限循环,我希望得到一些帮助......

  

合并错误:

     

错误:工具:替换为line:27指定的属性android:value,   但没有新值指定app主清单(此文件),第26行

     

错误:验证失败,退出应用程序主清单(此文件)

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

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

    <supports-screens
        android:largeScreens="true"
        android:normalScreens="true"
        android:smallScreens="true"
        android:xlargeScreens="true" />

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

                <category android:name="android.intent.category.LAUNCHER"/>
            </intent-filter>
            <meta-data
                android:name="beast"
                tools:replace="android:value"/>
        </activity>

        <service
            android:name="autoskillz.fpshackhub.FloatingViewService"
            android:enabled="true"
            android:exported="false"/>
    </application>

</manifest>

0 个答案:

没有答案