-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflambe.yaml
69 lines (57 loc) · 1.89 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
65
66
67
68
69
# Basic information about the game.
name: Simple Drawing
description: Example for Simple Drawing with hxDaedalus lib.
# Information about the game developer.
developer:
name: hxDaedalus
url: https://github.com/hxDaedalus/hxDaedalus-simpledrawing
# The game's unique identifier.
id: lib.hxDaedalus.simpledrawing
# The game's version string.
version: 0.0.3
# 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: -lib hxDaedalus
# Additional paths to include in the build.
# extra_paths:
# assets: dir1 dir2
# libs: dir1 dir2
# 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>
# The signing password for certs/android.p12
password: password
# 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/>
# The signing password for certs/ios-development.p12
password: password
# Firefox App-specific configuration.
firefox:
# https://developer.mozilla.org/en-US/docs/Web/Apps/Manifest
manifest.webapp:
{
default_locale: "en",
# type: "privileged",
# permissions: [...]
}