这是主要文件:
<?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>
我正在使用Samsung Galaxy Y(Gingerbread),当我安装APK时,它说应用程序未安装。请帮我解决这个问题。这是我为Android开发的第一个应用程序。
答案 0 :(得分:1)
正如评论中所述,您的手机必须允许未知来源。在Google中搜索android allow unknown sources
,您会看到许多线程解释这一点。
尝试卸载同一应用程序的先前安装的版本。签名可能有所不同..
最后,是的@dutt是对的,您必须签署您的应用才能将其安装到设备中。