无法在黑莓设备上部署 Android APK

unable to deploy Android APK on a blackberry device

几天来我一直在努力解决这个问题, 我创建了一些应用程序,我按照步骤获得了签名的 APK (https://www.udacity.com/wiki/ud853/course_resources/creating-a-signed-apk) 。 APK 在 android 设备上安装正常,但当我尝试在 BB 设备上部署时,我收到一条 "unable to install" 消息。一个 APK(从 google 下载到我的电脑上播放,然后保存到 BB 设备上)在 BB 设备上安装正常,但我的应用程序无法安装。 我想我错过了在创建签名 APK 之前或之后应该做的事情。有没有办法诊断或找到安装失败的原因??

这是我的清单文件:

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

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".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>
</application>

</manifest>

已解决:

支持的最小值 API 必须为 18 岁或以下。