feat(android): initialize Android project with Gradle configuration, build scripts, and main application structure for MeshChatX

This commit is contained in:
Sudo-Ivan
2026-01-01 21:09:22 -06:00
parent 00c1931680
commit 268fc11bd5
17 changed files with 847 additions and 13 deletions
@@ -0,0 +1,21 @@
import sys
def start_server(port=8000):
try:
from meshchatx.meshchat import main
sys.argv = [
'meshchat',
'--headless',
'--host', '127.0.0.1',
'--port', str(port),
'--no-https'
]
main()
except Exception as e:
print(f"Error starting MeshChatX server: {e}")
import traceback
traceback.print_exc()
raise