platform String

Which platform look to force on the application. Supported values are "ios" (meaning iOS 6 look), "ios7","android", "blackberry" and "wp". You can also set platform variants with it ("android-light" or "android-dark"), but keep in mind that it will still override the platform. If this is not desired, use the skin option.

    <div data-role="view">Bar</div>


    <script>
    new kendo.mobile.Application($(document.body), {
        platform: "android"
    });
    </script>
In this article