d7b88874df
Build Mumble Web 2 / linux_build (push) Successful in 1m31s
Build Mumble Web 2 / windows_build (push) Successful in 2m39s
Build Mumble Web 2 / android_build (push) Successful in 5m54s
Build android container / android-release-builder-container-build (push) Successful in 5s
Build Mumble Web 2 release builder containers / windows-release-builder-container-build (push) Successful in 16s
This adds android builds to the CI infrastructure. These builds generate an `apk` file that you can download and install. - Adds a new container build job that builds a container with all the required android dependencies - Adds a new release build that builds an android apk - Updated the imp module to split out mobile and desktop behavior - Adds logic to request microphone permissions - Added a custom android manifest that declares the required permissions Reviewed-on: #9
47 lines
910 B
TOML
47 lines
910 B
TOML
[application]
|
|
# App (Project) Name
|
|
name = "Mumble Web 2"
|
|
# Dioxus App Default Platform
|
|
default_platform = "web"
|
|
# `build` & `serve` dist path
|
|
out_dir = "dist"
|
|
# resource (public) file folder
|
|
asset_dir = "public"
|
|
|
|
android_manifest = "build/AndroidManifest.xml"
|
|
|
|
[web.app]
|
|
# HTML title tag content
|
|
title = "Mumble Web 2"
|
|
|
|
[web.watcher]
|
|
# when watcher trigger, regenerate the `index.html`
|
|
reload_html = true
|
|
# which files or dirs will be watcher monitoring
|
|
watch_path = ["src", "assets"]
|
|
|
|
# include `assets` in web platform
|
|
[web.resource]
|
|
# CSS style file
|
|
style = []
|
|
# Javascript code file
|
|
script = ["loader.js"]
|
|
|
|
[web.resource.dev]
|
|
# serve: [dev-server] only
|
|
# CSS style file
|
|
style = []
|
|
# Javascript code file
|
|
script = []
|
|
|
|
[bundle]
|
|
identifier = "xyz.ohea.mumble_web_2"
|
|
publisher = "OheaCorp"
|
|
icon = [
|
|
"icons/32x32.png",
|
|
"icons/256x256.png",
|
|
"assets/favicon.ico",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico",
|
|
]
|