forked from play-co/native-android
-
Notifications
You must be signed in to change notification settings - Fork 3
/
AndroidManifest.xsl
127 lines (112 loc) · 5.45 KB
/
AndroidManifest.xsl
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:android="http://schemas.android.com/apk/res/android">
<xsl:param name="package" />
<xsl:param name="title" />
<xsl:param name="activity" />
<xsl:param name="version">23</xsl:param>
<xsl:param name="versionCode">23</xsl:param>
<xsl:param name="minSdkVersion">21</xsl:param>
<xsl:param name="targetSdkVersion">28</xsl:param>
<xsl:param name="gameHash">0.0</xsl:param>
<xsl:param name="sdkHash">1.0</xsl:param>
<xsl:param name="androidHash">1.0</xsl:param>
<xsl:param name="develop">false</xsl:param>
<xsl:param name="appid"></xsl:param>
<xsl:param name="fullscreen">true</xsl:param>
<xsl:param name="shortname">tealeaf</xsl:param>
<xsl:param name="studioName">Hashcube</xsl:param>
<xsl:param name="entryPoint">gc.native.launchClient</xsl:param>
<xsl:param name="pushUrl">http://staging.api.gameclosure.com/push/%s/?device=%s&version=%s</xsl:param>
<xsl:param name="servicesUrl">http://api.gameclosure.com</xsl:param>
<xsl:param name="disableLogs">true</xsl:param>
<xsl:param name="debuggable">false</xsl:param>
<xsl:param name="installShortcut">false</xsl:param>
<xsl:param name="contactsUrl"></xsl:param>
<xsl:param name="orientation"></xsl:param>
<xsl:param name="otherApps" />
<xsl:strip-space elements="*" />
<xsl:output indent="yes" />
<xsl:template match="comment()" />
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()" />
</xsl:copy>
</xsl:template>
<xsl:template match="uses-sdk/@android:minSdkVersion">
<xsl:attribute name="android:minSdkVersion"><xsl:value-of select="$minSdkVersion" /></xsl:attribute>
</xsl:template>
<xsl:template match="uses-sdk/@android:targetSdkVersion">
<xsl:attribute name="android:targetSdkVersion"><xsl:value-of select="$targetSdkVersion" /></xsl:attribute>
</xsl:template>
<xsl:template match="application/@android:debuggable">
<xsl:attribute name="android:debuggable"><xsl:value-of select="$debuggable" /></xsl:attribute>
</xsl:template>
<xsl:template match="manifest/@package">
<xsl:attribute name="package"><xsl:value-of select="$package" /></xsl:attribute>
</xsl:template>
<xsl:template match="intent-filter/data[@android:scheme='tealeaf']/@android:host">
<xsl:attribute name="android:host"><xsl:value-of select="$package" /></xsl:attribute>
</xsl:template>
<xsl:template match="manifest/@android:versionName">
<xsl:attribute name="android:versionName"><xsl:value-of select="$version" /></xsl:attribute>
</xsl:template>
<xsl:template match="manifest/@android:versionCode">
<xsl:attribute name="android:versionCode"><xsl:value-of select="$versionCode" /></xsl:attribute>
</xsl:template>
<xsl:template match="category/@android:name[.='com.tealeaf']">
<xsl:attribute name="android:name">
<xsl:value-of select="$package" />
</xsl:attribute>
</xsl:template>
<xsl:template match="activity/@android:label[.='TeaLeaf']">
<xsl:attribute name="android:label"><xsl:value-of select="$title" /></xsl:attribute>
</xsl:template>
<xsl:template match="activity/@android:screenOrientation">
<xsl:attribute name="android:screenOrientation"><xsl:value-of select="$orientation" /></xsl:attribute>
</xsl:template>
<xsl:template match="activity/@android:name[.='.TeaLeaf']">
<xsl:attribute name="android:name"><xsl:value-of select="$activity" /></xsl:attribute>
</xsl:template>
<xsl:template match="meta-data[@android:name='gameHash']">
<meta-data android:name="gameHash" android:value="{$gameHash}"/>
</xsl:template>
<xsl:template match="meta-data[@android:name='sdkHash']">
<meta-data android:name="sdkHash" android:value="{$sdkHash}"/>
</xsl:template>
<xsl:template match="meta-data[@android:name='androidHash']">
<meta-data android:name="androidHash" android:value="{$androidHash}"/>
</xsl:template>
<xsl:template match="meta-data[@android:name='appID']">
<meta-data android:name="appID" android:value="{$appid}"/>
</xsl:template>
<xsl:template match="meta-data[@android:name='fullscreen']">
<meta-data android:name="fullscreen" android:value="{$fullscreen}"/>
</xsl:template>
<xsl:template match="meta-data[@android:name='shortName']">
<meta-data android:name="shortName" android:value="{$shortname}"/>
</xsl:template>
<xsl:template match="meta-data[@android:name='servicesUrl']">
<meta-data android:name="servicesUrl" android:value="{$servicesUrl}"/>
</xsl:template>
<xsl:template match="meta-data[@android:name='studioName']">
<meta-data android:name="studioName" android:value="{$studioName}"/>
</xsl:template>
<xsl:template match="meta-data[@android:name='pushUrl']">
<meta-data android:name="pushUrl" android:value="{$pushUrl}"/>
</xsl:template>
<xsl:template match="meta-data[@android:name='contactsUrl']">
<meta-data android:name="contactsUrl" android:value="{$contactsUrl}"/>
</xsl:template>
<xsl:template match="meta-data[@android:name='entryPoint']">
<meta-data android:name="entryPoint" android:value="{$entryPoint}"/>
</xsl:template>
<xsl:template match="meta-data[@android:name='disableLogs']">
<meta-data android:name="disableLogs" android:value="${disableLogs}"/>
</xsl:template>
<xsl:template match="meta-data[@android:name='installShortcut']">
<meta-data android:name="installShortcut" android:value="{$installShortcut}"/>
</xsl:template>
<xsl:template match="meta-data[@android:name='otherApps']">
<meta-data android:name="otherApps" android:value="{$otherApps}"/>
</xsl:template>
</xsl:stylesheet>