gpt4 book ai didi

android - 我的 android 应用程序在我安装时没有出现在我的手机上

转载 作者:行者123 更新时间:2023-11-29 15:49:08 25 4
gpt4 key购买 nike

我开发了我的第一个 Android 应用程序并已在 Google play 上发布,但是当我尝试安装它时,它安装了但没有出现在手机上。

这是 ma​​nifestAndroid.xml ,我相信我的配置是原因。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="testconverteo.ismail.converteo"
android:versionCode="5"
android:versionName="1.1b" >

<uses-permission android:name = "android.permission.INTERNET" />
<uses-permission android:name = "android.permission.ACCESS_NETWORK_STATE" />
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="15" />
<!-- Used for Google Play Store Campaign Measurement-->


<application
android:name="Myapp"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<service android:name="com.google.android.gms.analytics.CampaignTrackingService" />
<receiver android:name="com.google.android.gms.analytics.CampaignTrackingReceiver"
android:exported="true">
<intent-filter>
<action android:name="com.android.vending.INSTALL_REFERRER" />
</intent-filter>
</receiver>
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<!-- The BROWSABLE category is required in order for the intent filter to be accessible from a web browser -->
<category android:name="android.intent.category.BROWSABLE" />
<!-- Accepts URIs that begin with "http://www.appconverteo.com/application” -->
<data android:scheme="http"
android:host="www.appconverteo.com"
android:pathPrefix="/application" />
</intent-filter>
</activity>
<activity
android:name=".LoginDisplayActivity"
android:label="@string/title_activity_login_display" />
</application>
</manifest>

我应该怎么做才能解决这个问题?

谢谢

最佳答案

您需要将 .MainActivity Intent 过滤器分成两个不同的 Intent 过滤器。

一个过滤器显示在启动器上,一个单独的过滤器可浏览。

         <!-- this makes it available to the launcher -->
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>

<!-- this makes it openable with browser -->
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.BROWSABLE" />
<!-- Accepts URIs that begin with "http://www.appconverteo.com/application” -->
<data android:scheme="http"
android:host="www.appconverteo.com"
android:pathPrefix="/application" />
</intent-filter>

ps.:您应该推送到 Google Play 之前进行测试。

关于android - 我的 android 应用程序在我安装时没有出现在我的手机上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31427259/

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