This repository has been archived by the owner on Jun 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathexample.nmml
64 lines (41 loc) · 1.93 KB
/
example.nmml
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
<?xml version="1.0" encoding="utf-8"?>
<project>
<meta title="ExtensionsPack Example" description="ExtensionsPack Example"
package="ru.zzzzzzerg" version="1.0.0" company="zzzzzzerg" />
<app title="ExtensionsPack Example" file="ext_pack" main="Main"
version="1.0.0" company="zzzzzzerg" />
<window width="480" height="800" fps="30" orientation="portrait" resizable="true" if="web" />
<window width="480" height="800" fps="30" orientation="portrait" fullscreen="false" unless="web" />
<set name="BUILD_DIR" value="export" />
<!--<setenv name="no_console" value="1" />-->
<classpath name="source" />
<assets path="assets" if="android" >
<sound path="data/beep.wav" id="Beep" />
<!-- Your sound embedding code here... -->
</assets>
<assets path="assets" if="desktop" >
<sound path="data/beep.wav" id="Beep" />
<!-- Your sound embedding code here... -->
</assets>
<assets path="assets" if="target_flash" >
<sound path="data/beep.mp3" id="Beep" />
<!-- Your sound embedding code here... -->
</assets>
<assets path="assets" if="target_js" >
<sound path="data/beep.mp3" id="Beep" />
<!-- Your sound embedding code here... -->
</assets>
<assets path="assets" exclude="*.wav" if="flash" />
<assets path="assets" unless="flash" />
<icon name="assets/HaxeFlixel.svg" />
<haxelib name="nme" />
<haxelib name="flixel"/>
<include path="Extension" />
<template path="MainActivity.java" rename="src/ru/zzzzzzerg/MainActivity.java" if="android" />
<java path="source/java" />
<!-- <java path="flurry" /> -->
<template path="FlurryAgent.jar" rename="libs/FlurryAgent.jar" if="android" />
<template path="google-play-services.jar" rename="libs/google-play-services.jar" if="android" />
<template path="AndroidManifest.xml" if="android" />
<template path="ids.xml" rename="res/values/ids.xml" if="android" />
</project>