-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathAndroid.uxl
More file actions
298 lines (256 loc) · 21.3 KB
/
Android.uxl
File metadata and controls
298 lines (256 loc) · 21.3 KB
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
<Extensions Backend="CPlusPlus" Condition="ANDROID">
<!-- Backend config -->
<Define GRADLE />
<Define MOBILE />
<Define UNIX />
<Set BundleDirectory="app/src/main/assets" />
<Set HeaderDirectory="app/src/main/include" />
<Set SourceDirectory="app/src/main/jni" />
<Set BinaryDirectory="app/src/main/jniLibs" />
<Set PathSeparator="@(HOST_WIN32:Defined:Test(';', ':'))" />
<!-- Deprecated -->
<Set ABI="${ANDROID_ABI}" />
<!-- Build tools config -->
<Set JDK.Directory="@(Config.Java.JDK:Path || Config.Java.JDK.Directory:Path || JAVA_HOME:Env)" />
<Set NDK.Directory="@(Config.Android.NDK:Path || Config.Android.NDK.Directory:Path || ANDROID_NDK:Env)" />
<Set NDK.PlatformVersion="@(Project.Android.NDK.PlatformVersion || Config.Android.NDK.PlatformVersion || '16')" />
<Set SDK.BuildToolsVersion="@(Project.Android.SDK.BuildToolsVersion || Config.Android.SDK.BuildToolsVersion || '29.0.2')" />
<Set SDK.CompileVersion="@(Project.Android.SDK.CompileVersion || Config.Android.SDK.CompileVersion || '29')" />
<Set SDK.Directory="@(Config.Android.SDK:Path || Config.Android.SDK.Directory:Path || ANDROID_SDK:Env)" />
<Set SDK.MinVersion="@(Project.Android.SDK.MinVersion || Config.Android.SDK.MinVersion || '16')" />
<Set SDK.TargetVersion="@(Project.Android.SDK.TargetVersion || Config.Android.SDK.TargetVersion || '29')" />
<!-- Build properties -->
<Declare Element="Activity.Class.Declaration" />
<Declare Element="Activity.File.Declaration" />
<Declare Element="Activity.OnActivityResult.Declaration" />
<Declare Element="Activity.OnConfigurationChanged.Declaration" />
<Declare Element="Activity.OnKeyDown.Declaration" />
<Declare Element="Activity.OnKeyUp.Declaration" />
<Declare Element="Activity.OnLowMemory.Declaration" />
<Declare Element="Activity.OnPermissionsResult" />
<Declare Element="Activity.OnNewIntent.Declaration" />
<Declare Element="Activity.OnWindowFocusChanged.Declaration" />
<Declare Element="Android.ResStrings.Declaration" />
<Declare Element="AndroidManifest.ActivityElement" />
<Declare Element="AndroidManifest.ApplicationElement" />
<Declare Element="AndroidManifest.Permission" />
<Declare Element="AndroidManifest.RootElement" />
<Declare Element="AndroidManifest.Activity.ViewIntentFilter" />
<Declare Element="Gradle.Settings" />
<Declare Element="Gradle.Dependency" />
<Declare Element="Gradle.Dependency.ClassPath" />
<Declare Element="Gradle.Dependency.Implementation" />
<Declare Element="Gradle.Dependency.NativeImplementation" />
<Declare Element="Gradle.BuildFile.End" />
<Declare Element="Gradle.Repository" />
<Declare Element="Gradle.BuildScript.Repository" />
<Declare Element="Gradle.AllProjects.Repository" />
<Declare Element="Java.Extern.RegisterFunction" />
<Declare Element="SharedLibrary" />
<Declare Element="StaticLibrary" />
<Declare Element="LoadLibrary" />
<Declare Element="Project.Property" />
<Require AndroidManifest.Permission="android.permission.WAKE_LOCK" />
<Require AndroidManifest.Permission="android.permission.WRITE_EXTERNAL_STORAGE" />
<Require AndroidManifest.Permission="android.permission.INTERNET" />
<Require AndroidManifest.Permission="android.permission.ACCESS_NETWORK_STATE" />
<Require AndroidManifest.Permission="android.permission.VIBRATE" />
<Set Activity.BaseClass="androidx.appcompat.app.AppCompatActivity" />
<Set Activity.Name="@(Project.Android.Activity || Project.Name:Identifier)" />
<Set Activity.Package="@(Project.Android.Package || 'com.apps.@(Project.Name:QIdentifier:ToLower)')" />
<!-- Build configuration -->
<Set Condition="LIBRARY" Build.Configuration="@('!@(DEBUG:Defined)':Test('Release', 'Debug'))" />
<Set Condition="!LIBRARY" Build.Configuration="@('!@(DEBUG:Defined) && @(Project.Android.Key.Store:IsSet)':Test('Release', 'Debug'))" />
<Set Gradle.AssembleTask="assemble@(Build.Configuration)" />
<Set Gradle.BundleTask="bundle@(Build.Configuration)" />
<Set Outputs.AAR="app/build/outputs/aar/app-@(Build.Configuration:ToLower).aar" />
<Set Outputs.APK="app/build/outputs/apk/@(Build.Configuration:ToLower)/app-@(Build.Configuration:ToLower).apk" />
<Set Outputs.Bundle="app/build/outputs/bundle/@(Build.Configuration:ToLower)/app-@(Build.Configuration:ToLower).aab" />
<Set ProGuard.PrependRulesFile="@(Project.Android.Optimize.PrependRulesFile:ToLower)" />
<Set ProGuard.AppendRulesFile="@(Project.Android.Optimize.AppendRulesFile:ToLower)" />
<!-- Run-time properties -->
<Set Runtime.CatchCppExceptions=2 />
<Set Runtime.CppMainLoop="Build.VERSION.SDK_INT <= Build.VERSION_CODES.JELLY_BEAN" />
<Set Runtime.DebugPauseMilliseconds=0 />
<Set Runtime.KillActivityOnDestroy=true />
<Set Runtime.SeperateUnoThread="AppRuntimeSettings.CppMainLoop" />
<!-- Output files -->
<Set Condition="LIBRARY" Product="@(Project.Name).aar" />
<Set Condition="!LIBRARY" Product="@(Project.Name).apk" />
<Set Condition="!LIBRARY" Bundle="@(Project.Name).aab" />
<!-- Deprecated properties -->
<Deprecate Gradle.Dependency.Compile="Gradle.Dependency.Implementation" />
<Deprecate Gradle.Model.Repository="Gradle.Repository" />
<Deprecate JNI.SharedLibrary="SharedLibrary" />
<Deprecate JNI.StaticLibrary="StaticLibrary" />
<Deprecate JNI.SystemLibrary="LoadLibrary" />
<!-- STL config -->
<Set STL="c++_static" />
<!-- C++ source -->
<ProcessFile SourceFile="Uno/EntryPoints.cpp" />
<ProcessFile HeaderFile="Uno/JNIHelper.h" />
<ProcessFile SourceFile="Uno/JNIHelper.cpp" />
<ProcessFile HeaderFile="Uno/Graphics/GLHelper.h" />
<ProcessFile SourceFile="Uno/Graphics/GLHelper.cpp" />
<Require Entity="Android.Bootstrapper" />
<Require Entity="Android.Base.JNI" />
<Require Entity="Android.Base.JNI.Init(Android.Base.Primitives.ujobject)" />
<Require Entity="Android.Base.JNI.LoadClass(Android.Base.Primitives.JNIEnvPtr,Android.Base.Primitives.ConstCharPtr)" />
<Require Entity="Android.Base.JNI.CheckException()" />
<Require Entity="Android.Base.Types.Bridge" />
<Require Entity="Android.Base.Types.String.UnoToJava(string)" />
<Require Entity="Android.Base.AndroidBindingMacros" />
<Require Entity="Android.Base.Types.Bridge.RegisterUnoType(Android.Base.Primitives.ConstCharPtr,int,Uno.Type)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.ExternBlockHost" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.ExternBlockHost.RegisterFunctions()" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaUnoObject" />
<Require Entity="Android.Base.Wrappers.JavaObjectHelper.JObjectToJWrapper(Android.Base.Primitives.ujobject, bool)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaUnoObject.Box(object)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaUnoObject.Box(bool[])" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaUnoObject.Box(sbyte[])" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaUnoObject.Box(byte[])" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaUnoObject.Box(short[])" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaUnoObject.Box(int[])" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaUnoObject.Box(long[])" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaUnoObject.Box(float[])" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaUnoObject.Box(double[])" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaUnoObject.Box(string[])" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaUnoObject.Box(object[])" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaUnoObject.BoxDelegate(object,Android.Base.Primitives.ConstCharPtr)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaUnoObject.UnBox(Android.Base.Primitives.ujobject)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaUnoObject.UnBoxFreeingLocalRef(Android.Base.Primitives.ujobject)" />
<Require Entity="Uno.Platform.EventSources.InterAppInvoke.ReceivedURI" />
<Require Entity="Uno.Platform.EventSources.InterAppInvoke.OnReceivedURI(string)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.GetBool(object,int)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.GetByte(object,int)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.GetShort(object,int)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.GetInt(object,int)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.GetLong(object,int)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.GetFloat(object,int)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.GetDouble(object,int)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.GetString(object,int)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.GetObject(object,int)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.getBool(object,int)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.getByte(object,int)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.getShort(object,int)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.getInt(object,int)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.setInt(object,int,int)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.getLong(object,int)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.getFloat(object,int)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.getDouble(object,int)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.getString(object,int)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.getObject(object,int)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.SetBool(object,int,bool)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.SetByte(object,int,sbyte)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.SetShort(object,int,short)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.SetInt(object,int,int)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.SetLong(object,int,long)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.SetFloat(object,int,float)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.SetDouble(object,int,double)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.SetString(object,int,string)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.SetObject(object,int,object)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.setBool(object,int,bool)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.setByte(object,int,sbyte)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.setShort(object,int,short)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.setInt(object,int,int)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.setLong(object,int,long)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.setFloat(object,int,float)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.setDouble(object,int,double)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.setString(object,int,string)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.setObject(object,int,object)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.NewBoolArrayPtr(int)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.NewByteArrayPtr(int,bool)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.NewCharArrayPtr(int)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.NewShortArrayPtr(int)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.NewIntArrayPtr(int)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.NewLongArrayPtr(int)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.NewFloatArrayPtr(int)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.NewDoubleArrayPtr(int)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.NewStringArrayPtr(int)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.NewObjectArrayPtr(int)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.BoolArrayToUnoArrayPtr(Java.Object)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.ByteArrayToUnoArrayPtr(Java.Object)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.ShortArrayToUnoArrayPtr(Java.Object)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.IntArrayToUnoArrayPtr(Java.Object)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.LongArrayToUnoArrayPtr(Java.Object)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.FloatArrayToUnoArrayPtr(Java.Object)" />
<Require Entity="Uno.Compiler.ExportTargetInterop.Foreign.Android.JavaToUnoArrayEntrypoints.DoubleArrayToUnoArrayPtr(Java.Object)" />
<!-- Java source -->
<Set Java.ProjectDirectory="app/src" />
<Set Java.LibsDirectory="@(Java.ProjectDirectory)/main/libs" />
<Set Java.SourceDirectory="@(Java.ProjectDirectory)/main/java" />
<Set Java.PackageDirectory="@(Java.SourceDirectory)/@(Activity.Package:Replace('.', '/'))" />
<Declare Element="JavaFile" TargetDirectory="@(Java.SourceDirectory)" />
<ProcessFile Name="@(Java.PackageDirectory)/@(Activity.Name).java" />
<ProcessFile JavaFile="com/foreign/UnoWrapped.java" />
<ProcessFile JavaFile="com/fuse/Activity.java" />
<ProcessFile JavaFile="com/fuse/ActivityNativeEntryPoints.java" />
<ProcessFile JavaFile="com/fuse/ActivityState.java" />
<ProcessFile JavaFile="com/fuse/App.java" />
<ProcessFile JavaFile="com/fuse/AppRuntimeSettings.java" />
<ProcessFile JavaFile="com/fuse/R.java" />
<ProcessFile JavaFile="com/uno/CppManager.java" />
<!-- Icons -->
<ImageFile Name="@(Project.Android.Icons.LDPI:Path || '@//Assets/DefaultIcon.png')"
TargetWidth="36" TargetName="app/src/main/res/mipmap-ldpi/icon.png" />
<ImageFile Name="@(Project.Android.Icons.MDPI:Path || '@//Assets/DefaultIcon.png')"
TargetWidth="48" TargetName="app/src/main/res/mipmap-mdpi/icon.png" />
<ImageFile Name="@(Project.Android.Icons.HDPI:Path || '@//Assets/DefaultIcon.png')"
TargetWidth="72" TargetName="app/src/main/res/mipmap-hdpi/icon.png" />
<ImageFile Name="@(Project.Android.Icons.XHDPI:Path || '@//Assets/DefaultIcon.png')"
TargetWidth="96" TargetName="app/src/main/res/mipmap-xhdpi/icon.png" />
<ImageFile Name="@(Project.Android.Icons.XXHDPI:Path || '@//Assets/DefaultIcon.png')"
TargetWidth="144" TargetName="app/src/main/res/mipmap-xxhdpi/icon.png" />
<ImageFile Name="@(Project.Android.Icons.XXXHDPI:Path || '@//Assets/DefaultIcon.png')"
TargetWidth="192" TargetName="app/src/main/res/mipmap-xxxhdpi/icon.png" />
<CopyFile Condition="USE_ADAPTIVE_ICON || USE_ROUND_ADAPTIVE_ICON" Name="@(Project.Android.Icons.ANYDPI_v26:Path || '@//Assets/adaptive_icon/mipmap-anydpi-v26/icon.xml')" TargetName="app/src/main/res/mipmap-anydpi-v26/icon.xml" />
<ImageFile Condition="USE_ROUND_ADAPTIVE_ICON" Name="@(Project.Android.Icons.MDPI_Round:Path || '@//Assets/adaptive_icon/mipmap-mdpi/icon_round.png')"
TargetWidth="48" TargetName="app/src/main/res/mipmap-mdpi/icon_round.png" />
<ImageFile Condition="USE_ROUND_ADAPTIVE_ICON" Name="@(Project.Android.Icons.HDPI_Round:Path || '@//Assets/adaptive_icon/mipmap-hdpi/icon_round.png')"
TargetWidth="72" TargetName="app/src/main/res/mipmap-hdpi/icon_round.png" />
<ImageFile Condition="USE_ROUND_ADAPTIVE_ICON" Name="@(Project.Android.Icons.XHDPI_Round:Path || '@//Assets/adaptive_icon/mipmap-xhdpi/icon_round.png')"
TargetWidth="96" TargetName="app/src/main/res/mipmap-xhdpi/icon_round.png" />
<ImageFile Condition="USE_ROUND_ADAPTIVE_ICON" Name="@(Project.Android.Icons.XXHDPI_Round:Path || '@//Assets/adaptive_icon/mipmap-xxhdpi/icon_round.png')"
TargetWidth="144" TargetName="app/src/main/res/mipmap-xxhdpi/icon_round.png" />
<ImageFile Condition="USE_ROUND_ADAPTIVE_ICON" Name="@(Project.Android.Icons.XXXHDPI_Round:Path || '@//Assets/adaptive_icon/mipmap-xxxhdpi/icon_round.png')"
TargetWidth="192" TargetName="app/src/main/res/mipmap-xxxhdpi/icon_round.png" />
<CopyFile Condition="USE_ROUND_ADAPTIVE_ICON" Name="@(Project.Android.Icons.ANYDPI_v26_Round:Path || '@//Assets/adaptive_icon/mipmap-anydpi-v26/icon_round.xml')" TargetName="app/src/main/res/mipmap-anydpi-v26/icon_round.xml" />
<CopyFile Condition="USE_ADAPTIVE_ICON || USE_ROUND_ADAPTIVE_ICON" Name="@(Project.Android.Icons.foreground:Path || '@//Assets/adaptive_icon/drawable/icon_foreground.xml')" TargetName="app/src/main/res/drawable/icon_foreground.xml" />
<CopyFile Condition="USE_ADAPTIVE_ICON || USE_ROUND_ADAPTIVE_ICON" Name="@(Project.Android.Icons.background:Path || '@//Assets/adaptive_icon/drawable/icon_background.xml')" TargetName="app/src/main/res/drawable/icon_background.xml" />
<!-- Build system -->
<Set Commands.Build="@(HOST_WIN32:Defined:Test('build.bat', 'bash build.sh'))" />
<Set Commands.Run="@(HOST_WIN32:Defined:Test('run.bat', 'bash run.sh'))" />
<ProcessFile Name="app/build.gradle" />
<ProcessFile Name="app/src/main/AndroidManifest.xml" />
<ProcessFile Name="app/src/main/CMakeLists.txt" />
<CopyFile Condition="Android" Name="@(Project.Android.Splash.SplashLogo:Path || '@//Assets/DefaultIcon.png')" TargetName="app/src/main/res/drawable/splash_logo.png" />
<CopyFile Condition="Android" Name="@(Project.Android.Icons.Vector:Path || '@//Assets/icon.xml')" TargetName="app/src/main/res/drawable/icon.xml" />
<ProcessFile Name="app/src/main/res/drawable/splash_background.xml" />
<ProcessFile Name="app/src/main/res/values/colors.xml" />
<ProcessFile Name="app/src/main/res/values/strings.xml" />
<ProcessFile Name="app/src/main/res/values/styles.xml" />
<ProcessFile Name="build.gradle" />
<CopyFile Name="gradle/wrapper/gradle-wrapper.jar" />
<ProcessFile Name="gradle/wrapper/gradle-wrapper.properties" />
<ProcessFile Name="gradlew.bat" Condition="HOST_WIN32" />
<ProcessFile Name="gradlew" Condition="HOST_UNIX" IsExecutable=true />
<ProcessFile Name="settings.gradle" />
<ProcessFile Name="build.bat" Condition="HOST_WIN32" />
<ProcessFile Name="build.sh" Condition="HOST_UNIX" IsExecutable=true />
<ProcessFile Name="run.bat" Condition="HOST_WIN32" />
<ProcessFile Name="run.sh" Condition="HOST_UNIX" IsExecutable=true />
<ProcessFile Name="gradle.properties" />
<ProcessFile Name="local.properties" />
<ProcessFile Name="gradlew.bat" />
<ProcessFile Name="gradlew" />
<ProcessFile Name="build.gradle" />
<!-- Android Studio project -->
<ProcessFile Name=".idea/copyright/profiles_settings.xml" Overwrite=false />
<ProcessFile Name=".idea/.name" Overwrite=false />
<ProcessFile Name=".idea/compiler.xml" Overwrite=false />
<ProcessFile Name=".idea/gradle.xml" Overwrite=false />
<ProcessFile Name=".idea/misc.xml" Overwrite=false />
<ProcessFile Name=".idea/modules.xml" Overwrite=false />
<ProcessFile Name=".idea/runConfigurations.xml" Overwrite=false />
<ProcessFile Name=".idea/vcs.xml" Overwrite=false />
</Extensions>