Intent to Update Filter List?
- adblock182
- Posts: 4
- Joined: Thu Sep 03, 2015 12:39 am
Intent to Update Filter List?
Does anyone know the intent that updates the filter list? I'd like to create a workaround for an issue: ad blocking often takes a long time to initiate when the browser is first opened. I think this is due to a delay in the filter list being updated automatically upon running the app, since manually updating it in settings turns on ad blocking immediately. Thanks.
Re: Intent to Update Filter List?
Hi adblock182!
Thanks for your input. However, the delay is not because of the filter list download, but because ABP takes some time to load the filters.
We are always trying to look for speeding up the process and future improvements.
Thanks for your input. However, the delay is not because of the filter list download, but because ABP takes some time to load the filters.
We are always trying to look for speeding up the process and future improvements.
- adblock182
- Posts: 4
- Joined: Thu Sep 03, 2015 12:39 am
Re: Intent to Update Filter List?
Ah, okay, thanks
- adblock182
- Posts: 4
- Joined: Thu Sep 03, 2015 12:39 am
Re: Intent to Update Filter List?
Just out of curiosity, what is the process being performed when it says "Fetching available subscriptions..."? I would like to know the intent for that, actually.rach wrote:Hi adblock182!
Thanks for your input. However, the delay is not because of the filter list download, but because ABP takes some time to load the filters.
We are always trying to look for speeding up the process and future improvements.
Re: Intent to Update Filter List?
Hey adblock182!
Thanks for reaching out to us.
The message describes the process of loading the language filter choices.
We use many different terms for filter lists which may confuse users. We hope to be able to improve that soon.
Hope that tackles your question.
All the best,
Thanks for reaching out to us.
The message describes the process of loading the language filter choices.
We use many different terms for filter lists which may confuse users. We hope to be able to improve that soon.
Hope that tackles your question.
All the best,
- adblock182
- Posts: 4
- Joined: Thu Sep 03, 2015 12:39 am
Re: Intent to Update Filter List?
Ok, thanks.rach wrote:Hey adblock182!
Thanks for reaching out to us.
The message describes the process of loading the language filter choices.
We use many different terms for filter lists which may confuse users. We hope to be able to improve that soon.
Hope that tackles your question.
All the best,
Re: Intent to Update Filter List?
What intent-filter should I provide in my apps' manifest to make Samsung Email app put my app on the "Attach" list (the "Attach" list includes apps a user can choose to select attachments). The usual way:
Code
<intent-filter>
<action android:name="android.intent.action.GET_CONTENT" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.OPENABLE" />
<data android:mimeType="*/*" />
</intent-filter>
- does not work with Samsung Email.
Code
<intent-filter>
<action android:name="android.intent.action.GET_CONTENT" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.OPENABLE" />
<data android:mimeType="*/*" />
</intent-filter>
- does not work with Samsung Email.