简体   繁体   English

开发Android 2.3.3应用程序,可在模拟器中运行,APK声称已安装在手机上,未安装任何软件

[英]Developing Android 2.3.3 app, works in emulator, APK claims it is installed on phone, nothing is installed

Developing Android 2.3.3 app, works in emulator, APK claims it is installed on phone, nothing is installed 开发Android 2.3.3应用程序,可在模拟器中运行,APK声称已安装在手机上,未安装任何软件

It is a simple app and it works perfectly fine in Eclipse Android Application. 这是一个简单的应用程序,在Eclipse Android应用程序中运行良好。 When I export a unsigned .apk file, it claims that the application was "installed successfully". 当我导出未签名的.apk文件时,它声称该应用程序已“成功安装”。 I can not see the app beeing installed in any list like google play or "AppInstaller". 我看不到任何安装在Google Play或“ AppInstaller”之类的列表中的应用程序beeing。

Here is my manifest code: 这是我的清单代码:

<uses-sdk android:minSdkVersion="10" />
<uses-permission android:name="android.permission.INTERNET"></uses-permission>  
<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name" android:debuggable="true"
    android:theme="@android:style/Theme.Light">
    <activity

        android:name=".IS303AndroidSPLSActivity"
        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=".TabSubmenyTest"
        android:label="@string/app_name" >
    </activity>
</application>

</manifest>

It is normal that you don't see the app in Google Play list, as it was not installed via Google Play. 正常情况下,您没有在Google Play列表中看到该应用程序,因为它不是通过Google Play安装的。

Have you tried using your phone USB debug mode and lauching your app like this ? 您是否尝试过使用手机USB调试模式并像这样启动应用程序?

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

相关问题 Ionic Android应用程序正常运行,但安装后无法运行 - Ionic Android app works but not apk when installed 应用程序在调试期间在手机上工作,在安装apk时不起作用 - App works on phone during debugging, does not work when apk is installed Android应用程序:未安装任何软件 - Android App: Nothing was installed “ Package Installer已停止”-我的应用程序在仿真器和USB调试中工作正常,但内置的apk无法安装在真实手机上 - “Package Installer has stopped” - My app works fine on the Emulator and USB Debugging but built apk can't be installed on real phone 未安装Android模拟器的应用 - Android emulator not installed app 如何将数据库文件上传到 Android 模拟器上安装的应用程序(apk)? - How to upload a DB file to the app(apk) installed on the Android Emulator? 我在 Android Studio 中构建了一个应用程序,我将其制作为 apk,然后安装在手机中 - I build an app in Android Studio i made it apk then installed in phone 如果安装为apk,Android应用程序崩溃,如果通过Android Studio运行,则有效 - Android app crashes if installed as apk, works if runned trough Android Studio Android 2.3.3模拟器没有安装Google Services Framework? - Android 2.3.3 emulator has no Google Services Framework installed? 为什么.apk没有安装在Android模拟器中? - why does .apk is not getting installed in android emulator?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM