不幸的是,Package安装程序已停止

时间:2016-10-28 15:34:01

标签: android eclipse

我正在使用Eclipse构建应用程序(到Android)。如果我尝试从Eclipse启动我的应用程序并且我已连接到我的电脑我的智能手机,我可以使用我的应用程序。 现在我想从Eclipse构建一个.APK文件。然后我将apk文件复制到我的设备中,所以我使用MyFiles应用程序,搜索apk,clik就可以安装应用程序,但我有这个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>

3 个答案:

答案 0 :(得分:1)

它可以是任何内容,包括破坏的APK ...您应该使用adb来查看错误详细信息。

adb logcat 

答案 1 :(得分:0)

确保您的权限部分正常。通常这种类型的问题发生的原因如下:

  • 设备中的内存较少
  • 遗漏任何许可

答案 2 :(得分:0)

请检查您的应用程序资产,并且应用程序图标不应有太大的图像和资源。