Android: test conditional feature delivery based on country

276 Views Asked by At

I will use a dynamic feature in an android app. This feature should be available in a specific country. So I use the country condition for the dynamic feature module:

My code:

    <dist:module
        dist:title="@string/title_dynamicfeaturede">
        <dist:fusing dist:include="true" />
        <dist:delivery>
            <dist:install-time>
                <dist:conditions>
                    <dist:user-countries dist:exclude="false">
                        <dist:country dist:code="DE"/>
                    </dist:user-countries>
                </dist:conditions>
            </dist:install-time>
        </dist:delivery>
    </dist:module>

When I try to test this condition using the bundleTool, the condition will be ignored. Is there any way to test this condition without using the Playstore?

1

There are 1 best solutions below

0
On

based on android doc, you should set the flag dist:user-countries dist:exclude="true" to set the filter on.