Android App Doesn't Display in Recent ItemsIs there a way to run Python on Android?How to save an Android Activity state using save instance state?Close/hide the Android Soft KeyboardWhy is the Android emulator so slow? How can we speed up the Android emulator?Is there a unique Android device ID?What is 'Context' on Android?Correct Android intent-filter configuration to associate a file type with an Activity?How to get the build/version number of your Android application?Proper use cases for Android UserManager.isUserAGoat()?Android - try to connect to Dropbox API version 2
What does "rel" in `mathrel` and `stackrel` stands for?
Algorithms vs LP or MIP
Does ostensible/specious make sense in this sentence?
What is the difference between "Grippe" and "Männergrippe"?
Rent contract say that pets are not allowed. Possible repercussions if bringing the pet anyway?
How to respectfully refuse to assist co-workers with IT issues?
Discussing work with supervisor in an invited dinner with his family
How do we tell which part of kinetic energy gives rise to temperature?
Why isn't "I've" a proper response?
Ghidra: Prepend memory segment in assembly listing view
When calculating a force, why do I get different result when I try to calculate via torque vs via sum of forces at an axis?
Round towards zero
Talk interpreter
Can RMSE and MAE have the same value?
about to retire but not retired yet, employed but not working any more
Why did Khan ask Admiral James T. Kirk about Project Genesis?
Can an ISO file damage—or infect—the machine it's being burned on?
Could this kind of inaccurate sacrifice be countered?
What is the loud noise of a helicopter when the rotors are not yet moving?
The Wires Underground
Why do proofs of Bernoulli's equation assume that forces on opposite ends point in different directions?
Are there any elected officials in the U.S. who are not legislators, judges, or constitutional officers?
I don't have the theoretical background in my PhD topic. I can't justify getting the degree
Immediate Smaller Element Time Limit Exceeded
Android App Doesn't Display in Recent Items
Is there a way to run Python on Android?How to save an Android Activity state using save instance state?Close/hide the Android Soft KeyboardWhy is the Android emulator so slow? How can we speed up the Android emulator?Is there a unique Android device ID?What is 'Context' on Android?Correct Android intent-filter configuration to associate a file type with an Activity?How to get the build/version number of your Android application?Proper use cases for Android UserManager.isUserAGoat()?Android - try to connect to Dropbox API version 2
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I'm working on an application that does not show in "Recent Items" when navigating away from it. I know that it doesn't close the application because I can launch it from the app icon and it retains the state that it was in when I navigated away from it. SO's main suggestions are 2 manifest attributes in the main activity, and fixing these seem to solve most people's problems:
<activity
android:label=""
android:excludeFromRecents="true" />
The empty label and/or the excludeFromRecents attribute being set to true is the cause of most of these issues. Unfortunately, this is not the case for me. Please find my manifest code below:
<?xml version="1.0" encoding="utf-8"?>
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="28" tools:overrideLibrary="com.experience.android.webviewintegrator,another.library.here"/>
<permission android:name="permission.name" android:protectionLevel="signature" />
<uses-permission android:name="permission.name" />
<!--Every app defines its permissions-->
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.FLASHLIGHT"/>
<uses-permission android:name="android.permission.CALL_PHONE" />
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
<application
android:name="com.application.name.here"
android:largeHeap="true"
android:icon="@drawable/app_icon"
android:theme="@style/AppTheme"
android:networkSecurityConfig="@xml/network_security_config"
android:usesCleartextTraffic="true"
tools:replace="android:icon,android:theme,android:name,android:networkSecurityConfig">
<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" />
<meta-data android:name="com.google.android.gms.wallet.api.enabled" android:value="true" />
<meta-data android:name="com.google.android.maps.v2.API_KEY" android:value="@string/app_google_maps_api_key"/>
<uses-library android:name="org.apache.http.legacy" android:required="false"/>
<activity android:name="com.activity.name.here"
android:label="@string/app_name"
android:windowSoftInputMode="adjustPan"
android:configChanges="orientation|screenSize|keyboardHidden">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="schemeName" android:host="browser" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="schemeName" android:host="home" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="schemeName" android:host="web_panel" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="schemeName" android:host="widgets_panel_flat_spec" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="schemeName" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http" />
<data android:scheme="https" />
<data android:host="host" />
<data android:host="alsoAHost" />
<data android:pathPrefix="/" />
</intent-filter>
<intent-filter>
<action android:name="com.company.receiver" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="schemeName" android:host="applink" />
</intent-filter>
<intent-filter>
<action android:name="com.venuenext.stadium.RECEIVER" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="schemeName" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="schemeName"/>
<data android:host="@string/launch_host_tm_account" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="schemeName" />
</intent-filter>
<intent-filter>
<data android:scheme="schemeName" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>
</activity>
<meta-data android:name="com.facebook.sdk.ApplicationId" android:value="@string/facebook_app_id"/>
</application>
Things I have tried:
- Checking the merged manifest to see if there are any libraries overriding the excludeFromRecents attribute: I did find an activity in another library that contained this attribute (set to true) and removed the entire activity by creating an activity node for it in my manifest and then applying tools:node="remove"
- Applying android:excludeFromRecents="false" AND tools:replace="android:excludeFromRecents" to the activity node - no luck
- Applying tools:remove="android:excludeFromRecents" to the activity node - no luck
android android-manifest
add a comment |
I'm working on an application that does not show in "Recent Items" when navigating away from it. I know that it doesn't close the application because I can launch it from the app icon and it retains the state that it was in when I navigated away from it. SO's main suggestions are 2 manifest attributes in the main activity, and fixing these seem to solve most people's problems:
<activity
android:label=""
android:excludeFromRecents="true" />
The empty label and/or the excludeFromRecents attribute being set to true is the cause of most of these issues. Unfortunately, this is not the case for me. Please find my manifest code below:
<?xml version="1.0" encoding="utf-8"?>
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="28" tools:overrideLibrary="com.experience.android.webviewintegrator,another.library.here"/>
<permission android:name="permission.name" android:protectionLevel="signature" />
<uses-permission android:name="permission.name" />
<!--Every app defines its permissions-->
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.FLASHLIGHT"/>
<uses-permission android:name="android.permission.CALL_PHONE" />
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
<application
android:name="com.application.name.here"
android:largeHeap="true"
android:icon="@drawable/app_icon"
android:theme="@style/AppTheme"
android:networkSecurityConfig="@xml/network_security_config"
android:usesCleartextTraffic="true"
tools:replace="android:icon,android:theme,android:name,android:networkSecurityConfig">
<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" />
<meta-data android:name="com.google.android.gms.wallet.api.enabled" android:value="true" />
<meta-data android:name="com.google.android.maps.v2.API_KEY" android:value="@string/app_google_maps_api_key"/>
<uses-library android:name="org.apache.http.legacy" android:required="false"/>
<activity android:name="com.activity.name.here"
android:label="@string/app_name"
android:windowSoftInputMode="adjustPan"
android:configChanges="orientation|screenSize|keyboardHidden">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="schemeName" android:host="browser" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="schemeName" android:host="home" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="schemeName" android:host="web_panel" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="schemeName" android:host="widgets_panel_flat_spec" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="schemeName" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http" />
<data android:scheme="https" />
<data android:host="host" />
<data android:host="alsoAHost" />
<data android:pathPrefix="/" />
</intent-filter>
<intent-filter>
<action android:name="com.company.receiver" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="schemeName" android:host="applink" />
</intent-filter>
<intent-filter>
<action android:name="com.venuenext.stadium.RECEIVER" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="schemeName" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="schemeName"/>
<data android:host="@string/launch_host_tm_account" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="schemeName" />
</intent-filter>
<intent-filter>
<data android:scheme="schemeName" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>
</activity>
<meta-data android:name="com.facebook.sdk.ApplicationId" android:value="@string/facebook_app_id"/>
</application>
Things I have tried:
- Checking the merged manifest to see if there are any libraries overriding the excludeFromRecents attribute: I did find an activity in another library that contained this attribute (set to true) and removed the entire activity by creating an activity node for it in my manifest and then applying tools:node="remove"
- Applying android:excludeFromRecents="false" AND tools:replace="android:excludeFromRecents" to the activity node - no luck
- Applying tools:remove="android:excludeFromRecents" to the activity node - no luck
android android-manifest
add a comment |
I'm working on an application that does not show in "Recent Items" when navigating away from it. I know that it doesn't close the application because I can launch it from the app icon and it retains the state that it was in when I navigated away from it. SO's main suggestions are 2 manifest attributes in the main activity, and fixing these seem to solve most people's problems:
<activity
android:label=""
android:excludeFromRecents="true" />
The empty label and/or the excludeFromRecents attribute being set to true is the cause of most of these issues. Unfortunately, this is not the case for me. Please find my manifest code below:
<?xml version="1.0" encoding="utf-8"?>
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="28" tools:overrideLibrary="com.experience.android.webviewintegrator,another.library.here"/>
<permission android:name="permission.name" android:protectionLevel="signature" />
<uses-permission android:name="permission.name" />
<!--Every app defines its permissions-->
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.FLASHLIGHT"/>
<uses-permission android:name="android.permission.CALL_PHONE" />
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
<application
android:name="com.application.name.here"
android:largeHeap="true"
android:icon="@drawable/app_icon"
android:theme="@style/AppTheme"
android:networkSecurityConfig="@xml/network_security_config"
android:usesCleartextTraffic="true"
tools:replace="android:icon,android:theme,android:name,android:networkSecurityConfig">
<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" />
<meta-data android:name="com.google.android.gms.wallet.api.enabled" android:value="true" />
<meta-data android:name="com.google.android.maps.v2.API_KEY" android:value="@string/app_google_maps_api_key"/>
<uses-library android:name="org.apache.http.legacy" android:required="false"/>
<activity android:name="com.activity.name.here"
android:label="@string/app_name"
android:windowSoftInputMode="adjustPan"
android:configChanges="orientation|screenSize|keyboardHidden">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="schemeName" android:host="browser" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="schemeName" android:host="home" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="schemeName" android:host="web_panel" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="schemeName" android:host="widgets_panel_flat_spec" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="schemeName" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http" />
<data android:scheme="https" />
<data android:host="host" />
<data android:host="alsoAHost" />
<data android:pathPrefix="/" />
</intent-filter>
<intent-filter>
<action android:name="com.company.receiver" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="schemeName" android:host="applink" />
</intent-filter>
<intent-filter>
<action android:name="com.venuenext.stadium.RECEIVER" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="schemeName" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="schemeName"/>
<data android:host="@string/launch_host_tm_account" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="schemeName" />
</intent-filter>
<intent-filter>
<data android:scheme="schemeName" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>
</activity>
<meta-data android:name="com.facebook.sdk.ApplicationId" android:value="@string/facebook_app_id"/>
</application>
Things I have tried:
- Checking the merged manifest to see if there are any libraries overriding the excludeFromRecents attribute: I did find an activity in another library that contained this attribute (set to true) and removed the entire activity by creating an activity node for it in my manifest and then applying tools:node="remove"
- Applying android:excludeFromRecents="false" AND tools:replace="android:excludeFromRecents" to the activity node - no luck
- Applying tools:remove="android:excludeFromRecents" to the activity node - no luck
android android-manifest
I'm working on an application that does not show in "Recent Items" when navigating away from it. I know that it doesn't close the application because I can launch it from the app icon and it retains the state that it was in when I navigated away from it. SO's main suggestions are 2 manifest attributes in the main activity, and fixing these seem to solve most people's problems:
<activity
android:label=""
android:excludeFromRecents="true" />
The empty label and/or the excludeFromRecents attribute being set to true is the cause of most of these issues. Unfortunately, this is not the case for me. Please find my manifest code below:
<?xml version="1.0" encoding="utf-8"?>
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="28" tools:overrideLibrary="com.experience.android.webviewintegrator,another.library.here"/>
<permission android:name="permission.name" android:protectionLevel="signature" />
<uses-permission android:name="permission.name" />
<!--Every app defines its permissions-->
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.FLASHLIGHT"/>
<uses-permission android:name="android.permission.CALL_PHONE" />
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
<application
android:name="com.application.name.here"
android:largeHeap="true"
android:icon="@drawable/app_icon"
android:theme="@style/AppTheme"
android:networkSecurityConfig="@xml/network_security_config"
android:usesCleartextTraffic="true"
tools:replace="android:icon,android:theme,android:name,android:networkSecurityConfig">
<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" />
<meta-data android:name="com.google.android.gms.wallet.api.enabled" android:value="true" />
<meta-data android:name="com.google.android.maps.v2.API_KEY" android:value="@string/app_google_maps_api_key"/>
<uses-library android:name="org.apache.http.legacy" android:required="false"/>
<activity android:name="com.activity.name.here"
android:label="@string/app_name"
android:windowSoftInputMode="adjustPan"
android:configChanges="orientation|screenSize|keyboardHidden">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="schemeName" android:host="browser" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="schemeName" android:host="home" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="schemeName" android:host="web_panel" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="schemeName" android:host="widgets_panel_flat_spec" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="schemeName" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http" />
<data android:scheme="https" />
<data android:host="host" />
<data android:host="alsoAHost" />
<data android:pathPrefix="/" />
</intent-filter>
<intent-filter>
<action android:name="com.company.receiver" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="schemeName" android:host="applink" />
</intent-filter>
<intent-filter>
<action android:name="com.venuenext.stadium.RECEIVER" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="schemeName" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="schemeName"/>
<data android:host="@string/launch_host_tm_account" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="schemeName" />
</intent-filter>
<intent-filter>
<data android:scheme="schemeName" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>
</activity>
<meta-data android:name="com.facebook.sdk.ApplicationId" android:value="@string/facebook_app_id"/>
</application>
Things I have tried:
- Checking the merged manifest to see if there are any libraries overriding the excludeFromRecents attribute: I did find an activity in another library that contained this attribute (set to true) and removed the entire activity by creating an activity node for it in my manifest and then applying tools:node="remove"
- Applying android:excludeFromRecents="false" AND tools:replace="android:excludeFromRecents" to the activity node - no luck
- Applying tools:remove="android:excludeFromRecents" to the activity node - no luck
android android-manifest
android android-manifest
asked Mar 27 at 18:51
Chris C.Chris C.
558 bronze badges
558 bronze badges
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55384550%2fandroid-app-doesnt-display-in-recent-items%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55384550%2fandroid-app-doesnt-display-in-recent-items%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown