I created an html page ( footer ) that contains some links that are supposed to be opened in a new tab when clicked . the html page was embedded in an iOS and android native apps . in the IOS app , the links works fine ( when clicked , a new tab is opened ) , but in the android app nothing happens when I click on the links . this behavior was tested on many devises . what could be the reason of this issue ?
sample of the html content on the page :
<div class="footer">
<div class="item ">
<a href="https://text/" target="_blank">
test
</a>
</div>
</div>