当前问题的清单代码。 我在尝试找到各种方法时试图解决它,但是失败了。我尝试了stackoverflow中的所有方法,但均失败了,更改了版本,删除了标签,等等。问题是什么?请帮助我。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.ppp111.management"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="16"
android:targetSdkVersion="28" />
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:debuggable="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme" >
<activity android:name="com.example.ppp111.management.LoginActivity" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.example.ppp111.management.RegisterActivity" />
<activity android:name="com.example.ppp111.management.MainActivity" />
<uses-permission android:name="android.permission.INTERNET" />
</application>
</manifest>