Use Genymotion to emulate specific Android version and access localhost from it.
index.html:
<!-- 3.x -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<!-- 2.x -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<!-- 1.x -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!doctype html>
<h1>Validate ...</h1>
<script>
if (typeof jQuery === 'undefined') {
console.log('jQuery not available');
} else {
console.log('jQuery available');
}
</script>
4.1 | 4.2 | 4.3 | |
---|---|---|---|
1.x | |||
2.x | |||
3.x |