简体   繁体   English

部署后未安装Android应用

[英]Android Application isn't installed after deployment

I've developed an application using Eclipse and when I run it on my Droid Ultra the application runs when running through Eclipse. 我已经使用Eclipse开发了一个应用程序,当我在Droid Ultra上运行它时,该应用程序将在Eclipse中运行。 To my understanding when that happens the application should be installed on the device. 据我了解,这种情况应在设备上安装。 However, when I unplug the device and try to run the app by going through my phone applications it displays a toast message saying "App isn't installed". 但是,当我拔出设备的电源并尝试通过手机应用程序运行该应用程序时,它会显示一条吐司消息,提示“未安装应用程序”。 Does anyone know why this is happening? 有人知道为什么会这样吗? Is this a code problem, an environment issue, anything? 这是代码问题,环境问题吗?

Here is my manifest if it helps? 这是我的清单,如果有帮助吗?

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

<uses-sdk
    android:minSdkVersion="11"
    android:targetSdkVersion="20" />

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

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" android:permission="android.permission.BLUETOOTH">
    <activity
        android:name=".MainScreen"
        android:label="@string/app_name" 
        android:screenOrientation="portrait"
         android:noHistory="true">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity android:name=".FactScreen"
        android:screenOrientation="portrait"
         android:noHistory="true"></activity>
    <activity android:name=".CategoryScreen"
        android:screenOrientation="portrait"></activity>
     <activity android:name=".TimerScreen"
         android:screenOrientation="portrait"
          android:noHistory="true"></activity>
     <activity android:name=".QuestionScreen"
         android:screenOrientation="portrait"
          android:noHistory="true"></activity>
     <activity android:name=".NextQuestionScreen"
         android:theme="@android:style/Theme.Dialog"
         android:screenOrientation="portrait"
         android:noHistory="true"></activity>
</application>

您之前是否已经在设备上安装过该应用程序?如果是,请卸载现有应用程序,然后使用eclipse再试一次。问题可能是由于证书签名不正确造成的。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Android-如果未安装应用程序图标,如何获取? - Android - How can I get Application Icon if it isn't installed? Android Studio表示未安装JDK 7,甚至已安装JDK 8 - Android Studio says JDK 7 isn't Installed, while JDK 8 is even installed 确定应用程序是否已安装在android上 - Determine if application is installed on android Dspace安装成功,但部署后未显示页面 - Dspace installed successfully but not displaying pages after deployment 安装的应用程序列表不会在android列表中显示图标 - Installed application list doesn't show icon in the list in android Android应用程序创建不在活动中的内部文件 - Android application creation of internal file that isn't in an activity 为什么从Android应用程序访问数据库不安全? - Why accessing database from android application isn't secure? 生成错误:程序包android.app不存在-编译器认为未安装android SDK? (Android Studio 1.0) - Build error: package android.app doesn't exist - build thinks android SDK isn't installed? (Android studio 1.0) android-搜索后退键不会重新填充结果/列表 - android - Search isn't repopulating results / list after backspacing 调用 show(0) 后 Android MediaController 未显示 - Android MediaController isn't showing after call to show(0)
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM