-1

这是主要文件:

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

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="9" />
    <uses-permission android:name="android.permission.INTERNET"/>

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

我使用的是三星 Galaxy Y(姜饼),当我安装 APK 时显示未安装应用程序。请帮我解决这个问题。这是我为安卓开发的第一个应用程序。

4

1 回答 1

1

正如评论中所说,您的手机必须允许 Unkown sources。在谷歌搜索android allow unknown sources,你会看到很多线程解释这一点。


尝试卸载以前安装的同一应用程序的版本。签名可能不同..


最后,是的@dutt 是对的,您必须签署您的应用程序才能将其安装在设备中。

于 2013-04-28T19:21:21.090 回答