私は、samsungのmyknox基本機能を実装するアプリケーションを開発しています。しかし、私はコードを実行しようとしている間、私は下のエラーを取得しています。アプリケーションインストールに失敗しましたエラー[INSTALL_PARSE_FAILED_MANIFEST_MALFORMED]
インストールエラー:INSTALL_PARSE_FAILED_MANIFEST_MALFORMED
が、私はこれらのリンクを試してみました:
Installation error: INSTALL_PARSE_FAILED_MANIFEST_MALFORMED?
How to fix INSTALL_PARSE_FAILED_MANIFEST_MALFORMED in my android application
Android Studio : INSTALL_PARSE_FAILED_MANIFEST_MALFORMED
Screen shot of error which i'm getting at time of run the application.
のAndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<uses-permission android:name="android.permission.sec.MDM_HW_CONTROL" />
<uses-permission android:name="android.permission.sec.MDM_APP_MGMT" />
<application
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name">
<activity
android:name="com.signity.myknox.MainActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver
android:name="com.signity.myknox.SampleAdmin"
android:permission="android.permission.BIND_DEVICE_ADMIN">
<meta-data android:name="android.app.device_admin" />
<intent-filter>
<action android:name="android.app.action.DEVICE_ADMIN_ENABLED" />
</intent-filter>
</receiver>
<receiver
android:name="com.signity.myknox.SampleLicenseReceiver"
android:enabled="true">
<intent-filter>
<action android:name="edm.intent.action.license.status" />
</intent-filter>
</receiver>
</application>