-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflambe.yaml
64 lines (53 loc) · 1.57 KB
/
flambe.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Basic information about the game.
name: FlambeWebSocketDemo
description: Using websockets with Flambe
# Information about the game developer.
developer:
name: leobergman
url: http://blixtsystems.com
# The game's unique identifier.
id: se.leobergman.websocketdemo
# The game's version string.
version: 1.0.0
# The main class name.
main: Main
# The platform to use when invoking `run` or `build` with no arguments.
default_platform: html
# The initial orientation and fullscreen state on mobile devices.
# orientation: portrait
# fullscreen: true
# Additional flags to pass to the Haxe compiler.
haxe_flags: -swf-lib lib/AS3WebSocket.swc
# Additional paths to include in the build.
# extra_paths:
# assets: dir1 dir2
libs: libs
# src: ../dir1 ../dir2
# web: ["dir1 with spaces", "dir2"]
# Android-specific configuration.
android:
# https://developer.android.com/guide/topics/manifest/manifest-intro.html
AndroidManifest.xml: |
<manifest android:installLocation="auto">
<uses-permission android:name="android.permission.INTERNET" />
</manifest>
# iOS-specific configuration.
ios:
# http://developer.apple.com/library/ios/#documentation/general/Reference/InfoPlistKeyReference
Info.plist: |
<key>UIDeviceFamily</key>
<array>
<string>1</string>
<string>2</string>
</array>
<key>UIPrerenderedIcon</key>
<true/>
# Firefox App-specific configuration.
firefox:
# https://developer.mozilla.org/en-US/docs/Web/Apps/Manifest
manifest.webapp:
{
default_locale: "en",
# type: "privileged",
# permissions: [...]
}