Created
September 5, 2018 18:40
-
-
Save divadsn/ce44ddbfc069df27cd7d22540eff99f7 to your computer and use it in GitHub Desktop.
Proof of Concept, WIP.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Storage.prototype.setItem = function(key, value) { | |
AndroidLocalStorage.setItem(key, value); | |
} | |
Storage.prototype.getItem = function(key) { | |
AndroidLocalStorage.getItem(key); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment