GitHub Actions
Build: Add Android APK, PWA, and deployment guide
38bd54a
Raw
History Blame Contribute Delete
1.5 kB
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.hearthnet.app" version="0.1.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>HearthNet</name>
<description>Local-first community AI mesh</description>
<author email="contact@hearthnet.community" href="https://hearthnet.community">HearthNet</author>
<content src="index.html" />
<!-- Allow access to all domains -->
<access origin="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<!-- iOS preferences -->
<preference name="EnableViewportScale" value="true" />
<preference name="MediaPlaybackRequiresUserAction" value="false" />
<preference name="AllowInlineMediaPlayback" value="true" />
<preference name="BackupWebStorage" value="cloud" />
<preference name="TopActivityIndicator" value="gray" />
<!-- Android preferences -->
<preference name="Orientation" value="portrait" />
<preference name="Fullscreen" value="false" />
<preference name="android-minSdkVersion" value="21" />
<preference name="android-targetSdkVersion" value="36" />
<preference name="StatusBarOverlaysWebView" value="false" />
<preference name="StatusBarBackgroundColor" value="#1e40af" />
<preference name="StatusBarStyle" value="lightcontent" />
</widget>