A look at which Web APIs are available on Cloud Phone by CloudMosa| kaios.dev
Data Storage on KaiOSKaiOS offers standard Web Storage APIs (localStorage and sessionStorage), indexedDB, document.cookie, and the Cache API as well as platform-specific APIs like Device Storage and Data Store. The ideal API for your use case depends on factors including data size, security, and simplicity. Keep in mind that KaiOS devices have limited storage available (i.e. the Blu Zoey Smart only has 512MB), and many users will not have an external micro SD card, so its best to store the mi...| KaiOS.dev
What's next for the JioPhone, the best-selling KaiOS phone globally?| kaios.dev
Learn how to use common KaiOS APIs and InterfacesWake LockKaiOS does not support the Wake Lock API. Instead, it offers it’s own API: 1interface MozWakeLock { 2 readonly topic: string; 3 4 /** 5 * Release the wake lock. 6 * @throw NS_ERROR_DOM_INVALID_STATE_ERR if already unlocked. 7 */ 8 unlock(): void; 9} 10 11// KaiOS 2.5 12navigator.requestWakeLock(aTopic: string): MozWakeLock; 13 14// KaiOS 3.0 15navigator.b2g.requestWakeLock(aTopic: string): MozWakeLock; The KaiOS Wake Lock API will ac...| KaiOS.dev
Complete Guide to manifest.webapp Properties on KaiOS| kaios.dev
The KaiOS ecosystem, packaged and hosted apps, and the KaiStore and JioStore. KaiOS App Basics KaiOS Apps (Source: 2020’s most popular KaiOS apps) Unlike Android and iOS, “native” KaiOS apps are just modified web apps. That means no new programming languages to learn or complicated build processes, just standard HTML, CSS, and JavaScript. That means you can also write in TypeScript or any JavaScript version or language the compiles or transpiles into ECMAScript 2015 (ES6) and runs on Fi...| KaiOS.dev