我正在用Eclipse构建一个Android应用程序。如果我尝试从智能手机连接到电脑的Eclipse部署并启动我的应用程序,我可以使用我的应用程序。
现在我想从Eclipse构建一个.APK
文件。在我构建它之后,我将.APK文件复制到我的设备,所以我使用MyFiles应用程序,搜索.APK,点击它来安装它,但我有这个stange错误:
不幸的是,Package安装程序已停止。
现在我不知道如何解决这个问题。这是我的主要文件:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mcSolution"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="15"
android:targetSdkVersion="19" />
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >>
<activity
android:name="com.mcSolution.main.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>
<activity android:name="com.mcSolution.main.nuovoOrdine"></activity>
<activity android:name="com.mcSolution.ordine.creaOrdine"></activity>
<activity android:name="com.mcSolution.ordine.mainOrdine"></activity>
<activity android:name="com.mcSolution.ordine.viewOrdine"></activity>
<activity
android:name="com.mcSolution.setting.setting"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar"
android:windowSoftInputMode="stateVisible|adjustResize"
android:configChanges="orientation|screenSize"/>
<activity android:name="com.mcSolution.articoli.viewArticoli"
android:theme="@android:style/Theme.NoTitleBar"
android:windowSoftInputMode="stateVisible|adjustResize"
android:configChanges="orientation|screenSize"/>
<activity android:name="com.mcSolution.clienti.mainClienti"
android:windowSoftInputMode="stateVisible|adjustResize"
android:configChanges="orientation|screenSize"/>
<activity android:name="com.mcSolution.clienti.viewClienti"
android:windowSoftInputMode="stateVisible|adjustResize"
android:configChanges="orientation|screenSize"/>
<activity android:name="com.mcSolution.clienti.infoCliente"
android:windowSoftInputMode="stateHidden|adjustResize"
android:configChanges="orientation|screenSize"/>
<activity android:name="com.mcSolution.clienti.operazioniCliente"
android:windowSoftInputMode="stateHidden|adjustResize"
android:configChanges="orientation|screenSize"/>
<activity android:name="com.mcSolution.clienti.operazioniClienteDettaglio"
android:windowSoftInputMode="stateHidden|adjustResize"
android:configChanges="orientation|screenSize"/>
</application>
</manifest>
现在,如果我尝试将我的.APK文件复制到运行Android 4.0的设备,我可以毫无问题地安装它。如果我尝试在Android 5.0的智能手机上安装相同的.APK,我就有这个错误。