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?