2012-04-11 155 views
-1

我测试我的应用程序在Android手机。这是一个从eclipse导入的未签名应用程序。 当我在手机中安装应用程序时,它显示用户许可消息。最后我得到了一个未安装的消息应用程序。在这里我mainfest代码应用程序未安装

<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
    package="org.z_enterprise.praywithme" 
    android:versionCode="1" 
    android:versionName="1.0" 
    android:installLocation="preferExternal" > 

    <uses-sdk android:minSdkVersion="2" /> 
    <uses-permission android:name="android.permission.INTERNET" /> 
    <application 
     android:icon="@drawable/appicon" 
     android:label="@string/app_name" > 
     <activity 
      android:name=".main" 
      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=".about" 
      android:label="@string/app_name" > 
     </activity> 

      <activity 
      android:name=".favour" 
      android:label="@string/app_name" > 
     </activity> 
</application> 

</manifest> 
+0

如果你不签的应用程序,Android设备将无法安装。 – 2012-04-11 14:21:59

+0

非常感谢你..我会接受所有 – Palaniraja 2012-04-11 14:30:06

回答

1

检查设置>应用程序>标记/启用未知来源
马克的回答,如果有用的话