| 1670 | } |
| 1671 | |
| 1672 | bool appStoreInstalled() { |
| 1673 | FS *fs; |
| 1674 | if (!getFsStorage(fs)) { |
| 1675 | log_i("Fail getting filesystem"); |
| 1676 | return false; |
| 1677 | } |
| 1678 | |
| 1679 | return fs->exists("/BruceJS/Tools/App Store.js"); |
| 1680 | } |
| 1681 | |
| 1682 | #include <HTTPClient.h> |
| 1683 | void installAppStoreJS() { |
no test coverage detected