当我尝试将我的Android应用程序安装到虚拟设备时,我有下一个错误(我无法在真实手机中测试)。
INSTALL_PARSE_FAILED_MANIFEST_MALFORMED
这是我的清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="developer.negabur.chistes" >
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="Business.Categorias"
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>
答案 0 :(得分:1)
您的活动名称需要以句点为前缀,如下所示
android:name=".BusinessCategorias"