gpt4 book ai didi

java - Android 应用程序未安装 (APK)

转载 作者:行者123 更新时间:2023-11-30 04:22:29 25 4
gpt4 key购买 nike

我尝试将我的一个旧的简单 Java 应用程序移植到 Android 并导出为 APK。它在模拟器上安装和运行良好,但是当我尝试在真正的 Android 手机上安装它时,它只是说“应用程序未安装”

我正在使用 ADT for Eclipse 插件导出 APK。

我认为问题一定出在 list 上,因为该程序甚至不会安装或启动(或者是导出过程本身)。我还没有尝试从命令行执行它......我一直在避免它。如果没有人发现我的 list 有任何问题,我会尝试这样做:

<?xml version="1.0" encoding="utf-8"?>
<manifest package="bg.java.mobile"
android:installLocation="auto" android:versionCode="1" android:versionName="1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:icon="@drawable/icon" android:label="Heat Index" android:logo="@drawable/icon">
<activity android:name="AppLauncher"
android:label="@string/app_name" android:multiprocess="true" android:launchMode="singleInstance" android:screenOrientation="user">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>

最佳答案

您是否在手机上启用了“未知来源”? (设置 ->应用程序)否则你无法安装apk文件。 http://i.stack.imgur.com/Zqr5G.png

关于java - Android 应用程序未安装 (APK),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9057833/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com