2

又是这个老栗子,经过大量搜索后,我在此找到的最佳线程是 Android 上的“未安装应用程序”错误 在我的情况下,我已经检查了所有提到的修复程序,但是当我尝试安装未签名的 APK 文件时仍然存在问题. 当我从 Eclipse 安装该应用程序时,该应用程序在我的手机上运行良好,但是当我将它放在谷歌驱动器上,然后将我的手机指向 APK 时,我得到了上面的错误。我有一个 Note 1 我已经卸载了旧应用程序,重置了我的手机等,但没有运气。直到今天它对我来说都很好,我只是将 APK 放在谷歌驱动器上并从那里安装它,每次都有效,今天刚刚停止工作,我什么也没改变。我有 APK 的签名和未签名版本

这是我的清单文件

        <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="com.app.nquizitive"
        android:versionCode="1"
        android:versionName="1.0" >

        <uses-sdk android:minSdkVersion="8" />

        <supports-screens 
        android:largeScreens="true" 
        android:normalScreens="true" 
        android:smallScreens="true" 
        android:resizeable="true" 
        android:anyDensity="true" />

    <uses-permission android:name="android.permission.INTERNET" />

        <application
            android:icon="@drawable/ic_launcher"
            android:label="@string/app_name" >
            <activity
                android:name="com.app.nquizitive.StartupActivity"
                android:label="@string/app_name" android:screenOrientation="landscape">
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />

                    <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
            </activity>
        </application>

    </manifest>
4

1 回答 1

-1

My devices will only load signed APKs under these conditions. It appears to be a case of Google's boot on our neck. So I'm not sure what an unsigned one is good for unless you load it on a $45 USD Google-free device from China. So I release signed ones with increasing version numbers but with version "1" google-wise and then release "1"/"1.0" on Google Play.

于 2013-04-04T17:15:22.897 回答