Q3Demo.dproj 62 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298
  1. <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  2. <PropertyGroup>
  3. <ProjectGuid>{D7D9214B-D84F-4151-9421-A983BE361FD0}</ProjectGuid>
  4. <MainSource>Q3Demo.dpr</MainSource>
  5. <Base>True</Base>
  6. <Config Condition="'$(Config)'==''">Debug</Config>
  7. <TargetedPlatforms>3</TargetedPlatforms>
  8. <AppType>Application</AppType>
  9. <FrameworkType>VCL</FrameworkType>
  10. <ProjectVersion>19.3</ProjectVersion>
  11. <Platform Condition="'$(Platform)'==''">Win32</Platform>
  12. </PropertyGroup>
  13. <PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''">
  14. <Base>true</Base>
  15. </PropertyGroup>
  16. <PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Base)'=='true') or '$(Base_Win32)'!=''">
  17. <Base_Win32>true</Base_Win32>
  18. <CfgParent>Base</CfgParent>
  19. <Base>true</Base>
  20. </PropertyGroup>
  21. <PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Base)'=='true') or '$(Base_Win64)'!=''">
  22. <Base_Win64>true</Base_Win64>
  23. <CfgParent>Base</CfgParent>
  24. <Base>true</Base>
  25. </PropertyGroup>
  26. <PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_1)'!=''">
  27. <Cfg_1>true</Cfg_1>
  28. <CfgParent>Base</CfgParent>
  29. <Base>true</Base>
  30. </PropertyGroup>
  31. <PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Cfg_1)'=='true') or '$(Cfg_1_Win64)'!=''">
  32. <Cfg_1_Win64>true</Cfg_1_Win64>
  33. <CfgParent>Cfg_1</CfgParent>
  34. <Cfg_1>true</Cfg_1>
  35. <Base>true</Base>
  36. </PropertyGroup>
  37. <PropertyGroup Condition="'$(Config)'=='Debug' or '$(Cfg_2)'!=''">
  38. <Cfg_2>true</Cfg_2>
  39. <CfgParent>Base</CfgParent>
  40. <Base>true</Base>
  41. </PropertyGroup>
  42. <PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Cfg_2)'=='true') or '$(Cfg_2_Win32)'!=''">
  43. <Cfg_2_Win32>true</Cfg_2_Win32>
  44. <CfgParent>Cfg_2</CfgParent>
  45. <Cfg_2>true</Cfg_2>
  46. <Base>true</Base>
  47. </PropertyGroup>
  48. <PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Cfg_2)'=='true') or '$(Cfg_2_Win64)'!=''">
  49. <Cfg_2_Win64>true</Cfg_2_Win64>
  50. <CfgParent>Cfg_2</CfgParent>
  51. <Cfg_2>true</Cfg_2>
  52. <Base>true</Base>
  53. </PropertyGroup>
  54. <PropertyGroup Condition="'$(Base)'!=''">
  55. <DCC_Namespace>Vcl;Vcl.Imaging;Vcl.Touch;Vcl.Samples;Vcl.Shell;System;Xml;Data;Datasnap;Web;Soap;Winapi;$(DCC_Namespace)</DCC_Namespace>
  56. <VerInfo_Locale>1049</VerInfo_Locale>
  57. <DCC_ImageBase>00400000</DCC_ImageBase>
  58. <DCC_K>false</DCC_K>
  59. <DCC_S>false</DCC_S>
  60. <DCC_N>false</DCC_N>
  61. <VerInfo_Keys>CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=;CFBundleName=</VerInfo_Keys>
  62. <DCC_E>false</DCC_E>
  63. <DCC_F>false</DCC_F>
  64. <SanitizedProjectName>Q3Demo</SanitizedProjectName>
  65. </PropertyGroup>
  66. <PropertyGroup Condition="'$(Base_Win32)'!=''">
  67. <UWP_DelphiLogo44>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_44.png</UWP_DelphiLogo44>
  68. <UWP_DelphiLogo150>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_150.png</UWP_DelphiLogo150>
  69. <AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
  70. <DCC_Namespace>System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace)</DCC_Namespace>
  71. <Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
  72. <VerInfo_Locale>1033</VerInfo_Locale>
  73. <VerInfo_Keys>CompanyName=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(ModuleName);FileDescription=$(ModuleName);ProductName=$(ModuleName)</VerInfo_Keys>
  74. <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
  75. </PropertyGroup>
  76. <PropertyGroup Condition="'$(Base_Win64)'!=''">
  77. <UWP_DelphiLogo44>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_44.png</UWP_DelphiLogo44>
  78. <UWP_DelphiLogo150>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_150.png</UWP_DelphiLogo150>
  79. <VerInfo_Keys>CompanyName=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(ModuleName);FileDescription=$(ModuleName);ProductName=$(ModuleName)</VerInfo_Keys>
  80. <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
  81. <DCC_Namespace>System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace)</DCC_Namespace>
  82. <VerInfo_Locale>1033</VerInfo_Locale>
  83. <Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
  84. </PropertyGroup>
  85. <PropertyGroup Condition="'$(Cfg_1)'!=''">
  86. <DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols>
  87. <DCC_Define>RELEASE;$(DCC_Define)</DCC_Define>
  88. <DCC_DebugInformation>0</DCC_DebugInformation>
  89. <DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo>
  90. </PropertyGroup>
  91. <PropertyGroup Condition="'$(Cfg_1_Win64)'!=''">
  92. <AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
  93. <AppDPIAwarenessMode>PerMonitor</AppDPIAwarenessMode>
  94. </PropertyGroup>
  95. <PropertyGroup Condition="'$(Cfg_2)'!=''">
  96. <DCC_Define>DEBUG;$(DCC_Define)</DCC_Define>
  97. <DCC_GenerateStackFrames>true</DCC_GenerateStackFrames>
  98. <DCC_Optimize>false</DCC_Optimize>
  99. </PropertyGroup>
  100. <PropertyGroup Condition="'$(Cfg_2_Win32)'!=''">
  101. <BT_BuildType>Debug</BT_BuildType>
  102. <VerInfo_Locale>1033</VerInfo_Locale>
  103. <Icon_MainIcon>$(BDS)\bin\delphi_PROJECTICON.ico</Icon_MainIcon>
  104. <VerInfo_Keys>CompanyName=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(ModuleName);FileDescription=$(ModuleName);ProductName=$(ModuleName)</VerInfo_Keys>
  105. <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
  106. </PropertyGroup>
  107. <PropertyGroup Condition="'$(Cfg_2_Win64)'!=''">
  108. <BT_BuildType>Debug</BT_BuildType>
  109. <AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
  110. <AppDPIAwarenessMode>PerMonitor</AppDPIAwarenessMode>
  111. </PropertyGroup>
  112. <ItemGroup>
  113. <DelphiCompile Include="$(MainSource)">
  114. <MainSource>MainSource</MainSource>
  115. </DelphiCompile>
  116. <DCCReference Include="fQ3Demo.pas">
  117. <Form>Form1</Form>
  118. <FormType>dfm</FormType>
  119. </DCCReference>
  120. <BuildConfiguration Include="Base">
  121. <Key>Base</Key>
  122. </BuildConfiguration>
  123. <BuildConfiguration Include="Release">
  124. <Key>Cfg_1</Key>
  125. <CfgParent>Base</CfgParent>
  126. </BuildConfiguration>
  127. <BuildConfiguration Include="Debug">
  128. <Key>Cfg_2</Key>
  129. <CfgParent>Base</CfgParent>
  130. </BuildConfiguration>
  131. </ItemGroup>
  132. <ProjectExtensions>
  133. <Borland.Personality>Delphi.Personality.12</Borland.Personality>
  134. <Borland.ProjectType/>
  135. <BorlandProject>
  136. <Delphi.Personality>
  137. <Source>
  138. <Source Name="MainSource">Q3Demo.dpr</Source>
  139. </Source>
  140. <Excluded_Packages>
  141. <Excluded_Packages Name="$(BDSBIN)\bcboffice2k210.bpl">Embarcadero C++Builder Office 2000 Servers Package</Excluded_Packages>
  142. <Excluded_Packages Name="$(BDSBIN)\bcbofficexp210.bpl">Embarcadero C++Builder Office XP Servers Package</Excluded_Packages>
  143. <Excluded_Packages Name="$(BDSBIN)\dcloffice2k210.bpl">Microsoft Office 2000 Sample Automation Server Wrapper Components</Excluded_Packages>
  144. <Excluded_Packages Name="$(BDSBIN)\dclofficexp210.bpl">Microsoft Office XP Sample Automation Server Wrapper Components</Excluded_Packages>
  145. </Excluded_Packages>
  146. </Delphi.Personality>
  147. <Platforms>
  148. <Platform value="Win32">True</Platform>
  149. <Platform value="Win64">True</Platform>
  150. </Platforms>
  151. <Deployment Version="3">
  152. <DeployFile LocalName="Q3Demo.exe" Configuration="Debug" Class="ProjectOutput">
  153. <Platform Name="Win32">
  154. <RemoteName>Q3Demo.exe</RemoteName>
  155. <Overwrite>true</Overwrite>
  156. </Platform>
  157. </DeployFile>
  158. <DeployClass Name="AdditionalDebugSymbols">
  159. <Platform Name="iOSSimulator">
  160. <Operation>1</Operation>
  161. </Platform>
  162. <Platform Name="OSX32">
  163. <RemoteDir>Contents\MacOS</RemoteDir>
  164. <Operation>1</Operation>
  165. </Platform>
  166. <Platform Name="Win32">
  167. <Operation>0</Operation>
  168. </Platform>
  169. </DeployClass>
  170. <DeployClass Name="AndroidClasses">
  171. <Platform Name="Android">
  172. <RemoteDir>classes</RemoteDir>
  173. <Operation>64</Operation>
  174. </Platform>
  175. <Platform Name="Android64">
  176. <RemoteDir>classes</RemoteDir>
  177. <Operation>64</Operation>
  178. </Platform>
  179. </DeployClass>
  180. <DeployClass Name="AndroidClassesDexFile">
  181. <Platform Name="Android">
  182. <RemoteDir>classes</RemoteDir>
  183. <Operation>1</Operation>
  184. </Platform>
  185. </DeployClass>
  186. <DeployClass Name="AndroidFileProvider">
  187. <Platform Name="Android">
  188. <RemoteDir>res\xml</RemoteDir>
  189. <Operation>1</Operation>
  190. </Platform>
  191. <Platform Name="Android64">
  192. <RemoteDir>res\xml</RemoteDir>
  193. <Operation>1</Operation>
  194. </Platform>
  195. </DeployClass>
  196. <DeployClass Name="AndroidGDBServer">
  197. <Platform Name="Android">
  198. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  199. <Operation>1</Operation>
  200. </Platform>
  201. </DeployClass>
  202. <DeployClass Name="AndroidLibnativeArmeabiFile">
  203. <Platform Name="Android">
  204. <RemoteDir>library\lib\armeabi</RemoteDir>
  205. <Operation>1</Operation>
  206. </Platform>
  207. <Platform Name="Android64">
  208. <RemoteDir>library\lib\armeabi</RemoteDir>
  209. <Operation>1</Operation>
  210. </Platform>
  211. </DeployClass>
  212. <DeployClass Name="AndroidLibnativeArmeabiv7aFile">
  213. <Platform Name="Android64">
  214. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  215. <Operation>1</Operation>
  216. </Platform>
  217. </DeployClass>
  218. <DeployClass Name="AndroidLibnativeMipsFile">
  219. <Platform Name="Android">
  220. <RemoteDir>library\lib\mips</RemoteDir>
  221. <Operation>1</Operation>
  222. </Platform>
  223. <Platform Name="Android64">
  224. <RemoteDir>library\lib\mips</RemoteDir>
  225. <Operation>1</Operation>
  226. </Platform>
  227. </DeployClass>
  228. <DeployClass Name="AndroidLibnativeX86File"/>
  229. <DeployClass Name="AndroidServiceOutput">
  230. <Platform Name="Android">
  231. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  232. <Operation>1</Operation>
  233. </Platform>
  234. <Platform Name="Android64">
  235. <RemoteDir>library\lib\arm64-v8a</RemoteDir>
  236. <Operation>1</Operation>
  237. </Platform>
  238. </DeployClass>
  239. <DeployClass Name="AndroidServiceOutput_Android32">
  240. <Platform Name="Android64">
  241. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  242. <Operation>1</Operation>
  243. </Platform>
  244. </DeployClass>
  245. <DeployClass Name="AndroidSplashImageDef">
  246. <Platform Name="Android">
  247. <RemoteDir>res\drawable</RemoteDir>
  248. <Operation>1</Operation>
  249. </Platform>
  250. <Platform Name="Android64">
  251. <RemoteDir>res\drawable</RemoteDir>
  252. <Operation>1</Operation>
  253. </Platform>
  254. </DeployClass>
  255. <DeployClass Name="AndroidSplashStyles">
  256. <Platform Name="Android">
  257. <RemoteDir>res\values</RemoteDir>
  258. <Operation>1</Operation>
  259. </Platform>
  260. <Platform Name="Android64">
  261. <RemoteDir>res\values</RemoteDir>
  262. <Operation>1</Operation>
  263. </Platform>
  264. </DeployClass>
  265. <DeployClass Name="AndroidSplashStylesV21">
  266. <Platform Name="Android">
  267. <RemoteDir>res\values-v21</RemoteDir>
  268. <Operation>1</Operation>
  269. </Platform>
  270. <Platform Name="Android64">
  271. <RemoteDir>res\values-v21</RemoteDir>
  272. <Operation>1</Operation>
  273. </Platform>
  274. </DeployClass>
  275. <DeployClass Name="Android_Colors">
  276. <Platform Name="Android">
  277. <RemoteDir>res\values</RemoteDir>
  278. <Operation>1</Operation>
  279. </Platform>
  280. <Platform Name="Android64">
  281. <RemoteDir>res\values</RemoteDir>
  282. <Operation>1</Operation>
  283. </Platform>
  284. </DeployClass>
  285. <DeployClass Name="Android_DefaultAppIcon">
  286. <Platform Name="Android">
  287. <RemoteDir>res\drawable</RemoteDir>
  288. <Operation>1</Operation>
  289. </Platform>
  290. <Platform Name="Android64">
  291. <RemoteDir>res\drawable</RemoteDir>
  292. <Operation>1</Operation>
  293. </Platform>
  294. </DeployClass>
  295. <DeployClass Name="Android_LauncherIcon144">
  296. <Platform Name="Android">
  297. <RemoteDir>res\drawable-xxhdpi</RemoteDir>
  298. <Operation>1</Operation>
  299. </Platform>
  300. <Platform Name="Android64">
  301. <RemoteDir>res\drawable-xxhdpi</RemoteDir>
  302. <Operation>1</Operation>
  303. </Platform>
  304. </DeployClass>
  305. <DeployClass Name="Android_LauncherIcon192">
  306. <Platform Name="Android">
  307. <RemoteDir>res\drawable-xxxhdpi</RemoteDir>
  308. <Operation>1</Operation>
  309. </Platform>
  310. <Platform Name="Android64">
  311. <RemoteDir>res\drawable-xxxhdpi</RemoteDir>
  312. <Operation>1</Operation>
  313. </Platform>
  314. </DeployClass>
  315. <DeployClass Name="Android_LauncherIcon36">
  316. <Platform Name="Android">
  317. <RemoteDir>res\drawable-ldpi</RemoteDir>
  318. <Operation>1</Operation>
  319. </Platform>
  320. <Platform Name="Android64">
  321. <RemoteDir>res\drawable-ldpi</RemoteDir>
  322. <Operation>1</Operation>
  323. </Platform>
  324. </DeployClass>
  325. <DeployClass Name="Android_LauncherIcon48">
  326. <Platform Name="Android">
  327. <RemoteDir>res\drawable-mdpi</RemoteDir>
  328. <Operation>1</Operation>
  329. </Platform>
  330. <Platform Name="Android64">
  331. <RemoteDir>res\drawable-mdpi</RemoteDir>
  332. <Operation>1</Operation>
  333. </Platform>
  334. </DeployClass>
  335. <DeployClass Name="Android_LauncherIcon72">
  336. <Platform Name="Android">
  337. <RemoteDir>res\drawable-hdpi</RemoteDir>
  338. <Operation>1</Operation>
  339. </Platform>
  340. <Platform Name="Android64">
  341. <RemoteDir>res\drawable-hdpi</RemoteDir>
  342. <Operation>1</Operation>
  343. </Platform>
  344. </DeployClass>
  345. <DeployClass Name="Android_LauncherIcon96">
  346. <Platform Name="Android">
  347. <RemoteDir>res\drawable-xhdpi</RemoteDir>
  348. <Operation>1</Operation>
  349. </Platform>
  350. <Platform Name="Android64">
  351. <RemoteDir>res\drawable-xhdpi</RemoteDir>
  352. <Operation>1</Operation>
  353. </Platform>
  354. </DeployClass>
  355. <DeployClass Name="Android_NotificationIcon24">
  356. <Platform Name="Android">
  357. <RemoteDir>res\drawable-mdpi</RemoteDir>
  358. <Operation>1</Operation>
  359. </Platform>
  360. <Platform Name="Android64">
  361. <RemoteDir>res\drawable-mdpi</RemoteDir>
  362. <Operation>1</Operation>
  363. </Platform>
  364. </DeployClass>
  365. <DeployClass Name="Android_NotificationIcon36">
  366. <Platform Name="Android">
  367. <RemoteDir>res\drawable-hdpi</RemoteDir>
  368. <Operation>1</Operation>
  369. </Platform>
  370. <Platform Name="Android64">
  371. <RemoteDir>res\drawable-hdpi</RemoteDir>
  372. <Operation>1</Operation>
  373. </Platform>
  374. </DeployClass>
  375. <DeployClass Name="Android_NotificationIcon48">
  376. <Platform Name="Android">
  377. <RemoteDir>res\drawable-xhdpi</RemoteDir>
  378. <Operation>1</Operation>
  379. </Platform>
  380. <Platform Name="Android64">
  381. <RemoteDir>res\drawable-xhdpi</RemoteDir>
  382. <Operation>1</Operation>
  383. </Platform>
  384. </DeployClass>
  385. <DeployClass Name="Android_NotificationIcon72">
  386. <Platform Name="Android">
  387. <RemoteDir>res\drawable-xxhdpi</RemoteDir>
  388. <Operation>1</Operation>
  389. </Platform>
  390. <Platform Name="Android64">
  391. <RemoteDir>res\drawable-xxhdpi</RemoteDir>
  392. <Operation>1</Operation>
  393. </Platform>
  394. </DeployClass>
  395. <DeployClass Name="Android_NotificationIcon96">
  396. <Platform Name="Android">
  397. <RemoteDir>res\drawable-xxxhdpi</RemoteDir>
  398. <Operation>1</Operation>
  399. </Platform>
  400. <Platform Name="Android64">
  401. <RemoteDir>res\drawable-xxxhdpi</RemoteDir>
  402. <Operation>1</Operation>
  403. </Platform>
  404. </DeployClass>
  405. <DeployClass Name="Android_SplashImage426">
  406. <Platform Name="Android">
  407. <RemoteDir>res\drawable-small</RemoteDir>
  408. <Operation>1</Operation>
  409. </Platform>
  410. <Platform Name="Android64">
  411. <RemoteDir>res\drawable-small</RemoteDir>
  412. <Operation>1</Operation>
  413. </Platform>
  414. </DeployClass>
  415. <DeployClass Name="Android_SplashImage470">
  416. <Platform Name="Android">
  417. <RemoteDir>res\drawable-normal</RemoteDir>
  418. <Operation>1</Operation>
  419. </Platform>
  420. <Platform Name="Android64">
  421. <RemoteDir>res\drawable-normal</RemoteDir>
  422. <Operation>1</Operation>
  423. </Platform>
  424. </DeployClass>
  425. <DeployClass Name="Android_SplashImage640">
  426. <Platform Name="Android">
  427. <RemoteDir>res\drawable-large</RemoteDir>
  428. <Operation>1</Operation>
  429. </Platform>
  430. <Platform Name="Android64">
  431. <RemoteDir>res\drawable-large</RemoteDir>
  432. <Operation>1</Operation>
  433. </Platform>
  434. </DeployClass>
  435. <DeployClass Name="Android_SplashImage960">
  436. <Platform Name="Android">
  437. <RemoteDir>res\drawable-xlarge</RemoteDir>
  438. <Operation>1</Operation>
  439. </Platform>
  440. <Platform Name="Android64">
  441. <RemoteDir>res\drawable-xlarge</RemoteDir>
  442. <Operation>1</Operation>
  443. </Platform>
  444. </DeployClass>
  445. <DeployClass Name="Android_Strings">
  446. <Platform Name="Android">
  447. <RemoteDir>res\values</RemoteDir>
  448. <Operation>1</Operation>
  449. </Platform>
  450. <Platform Name="Android64">
  451. <RemoteDir>res\values</RemoteDir>
  452. <Operation>1</Operation>
  453. </Platform>
  454. </DeployClass>
  455. <DeployClass Name="DebugSymbols">
  456. <Platform Name="iOSSimulator">
  457. <Operation>1</Operation>
  458. </Platform>
  459. <Platform Name="OSX32">
  460. <RemoteDir>Contents\MacOS</RemoteDir>
  461. <Operation>1</Operation>
  462. </Platform>
  463. <Platform Name="Win32">
  464. <Operation>0</Operation>
  465. </Platform>
  466. </DeployClass>
  467. <DeployClass Name="DependencyFramework">
  468. <Platform Name="OSX32">
  469. <RemoteDir>Contents\MacOS</RemoteDir>
  470. <Operation>1</Operation>
  471. <Extensions>.framework</Extensions>
  472. </Platform>
  473. <Platform Name="OSX64">
  474. <RemoteDir>Contents\MacOS</RemoteDir>
  475. <Operation>1</Operation>
  476. <Extensions>.framework</Extensions>
  477. </Platform>
  478. <Platform Name="OSXARM64">
  479. <RemoteDir>Contents\MacOS</RemoteDir>
  480. <Operation>1</Operation>
  481. <Extensions>.framework</Extensions>
  482. </Platform>
  483. <Platform Name="Win32">
  484. <Operation>0</Operation>
  485. </Platform>
  486. </DeployClass>
  487. <DeployClass Name="DependencyModule">
  488. <Platform Name="iOSDevice32">
  489. <Operation>1</Operation>
  490. <Extensions>.dylib</Extensions>
  491. </Platform>
  492. <Platform Name="iOSDevice64">
  493. <Operation>1</Operation>
  494. <Extensions>.dylib</Extensions>
  495. </Platform>
  496. <Platform Name="iOSSimulator">
  497. <Operation>1</Operation>
  498. <Extensions>.dylib</Extensions>
  499. </Platform>
  500. <Platform Name="OSX32">
  501. <RemoteDir>Contents\MacOS</RemoteDir>
  502. <Operation>1</Operation>
  503. <Extensions>.dylib</Extensions>
  504. </Platform>
  505. <Platform Name="OSX64">
  506. <RemoteDir>Contents\MacOS</RemoteDir>
  507. <Operation>1</Operation>
  508. <Extensions>.dylib</Extensions>
  509. </Platform>
  510. <Platform Name="OSXARM64">
  511. <RemoteDir>Contents\MacOS</RemoteDir>
  512. <Operation>1</Operation>
  513. <Extensions>.dylib</Extensions>
  514. </Platform>
  515. <Platform Name="Win32">
  516. <Operation>0</Operation>
  517. <Extensions>.dll;.bpl</Extensions>
  518. </Platform>
  519. </DeployClass>
  520. <DeployClass Required="true" Name="DependencyPackage">
  521. <Platform Name="iOSDevice32">
  522. <Operation>1</Operation>
  523. <Extensions>.dylib</Extensions>
  524. </Platform>
  525. <Platform Name="iOSDevice64">
  526. <Operation>1</Operation>
  527. <Extensions>.dylib</Extensions>
  528. </Platform>
  529. <Platform Name="iOSSimulator">
  530. <Operation>1</Operation>
  531. <Extensions>.dylib</Extensions>
  532. </Platform>
  533. <Platform Name="OSX32">
  534. <RemoteDir>Contents\MacOS</RemoteDir>
  535. <Operation>1</Operation>
  536. <Extensions>.dylib</Extensions>
  537. </Platform>
  538. <Platform Name="OSX64">
  539. <RemoteDir>Contents\MacOS</RemoteDir>
  540. <Operation>1</Operation>
  541. <Extensions>.dylib</Extensions>
  542. </Platform>
  543. <Platform Name="OSXARM64">
  544. <RemoteDir>Contents\MacOS</RemoteDir>
  545. <Operation>1</Operation>
  546. <Extensions>.dylib</Extensions>
  547. </Platform>
  548. <Platform Name="Win32">
  549. <Operation>0</Operation>
  550. <Extensions>.bpl</Extensions>
  551. </Platform>
  552. </DeployClass>
  553. <DeployClass Name="File">
  554. <Platform Name="Android">
  555. <Operation>0</Operation>
  556. </Platform>
  557. <Platform Name="Android64">
  558. <Operation>0</Operation>
  559. </Platform>
  560. <Platform Name="iOSDevice32">
  561. <Operation>0</Operation>
  562. </Platform>
  563. <Platform Name="iOSDevice64">
  564. <Operation>0</Operation>
  565. </Platform>
  566. <Platform Name="iOSSimulator">
  567. <Operation>0</Operation>
  568. </Platform>
  569. <Platform Name="OSX32">
  570. <RemoteDir>Contents\Resources\StartUp\</RemoteDir>
  571. <Operation>0</Operation>
  572. </Platform>
  573. <Platform Name="OSX64">
  574. <RemoteDir>Contents\Resources\StartUp\</RemoteDir>
  575. <Operation>0</Operation>
  576. </Platform>
  577. <Platform Name="OSXARM64">
  578. <RemoteDir>Contents\Resources\StartUp\</RemoteDir>
  579. <Operation>0</Operation>
  580. </Platform>
  581. <Platform Name="Win32">
  582. <Operation>0</Operation>
  583. </Platform>
  584. </DeployClass>
  585. <DeployClass Name="iOS_AppStore1024">
  586. <Platform Name="iOSDevice64">
  587. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  588. <Operation>1</Operation>
  589. </Platform>
  590. </DeployClass>
  591. <DeployClass Name="iPad_AppIcon152">
  592. <Platform Name="iOSDevice64">
  593. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  594. <Operation>1</Operation>
  595. </Platform>
  596. <Platform Name="iOSSimulator">
  597. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  598. <Operation>1</Operation>
  599. </Platform>
  600. </DeployClass>
  601. <DeployClass Name="iPad_AppIcon167">
  602. <Platform Name="iOSDevice64">
  603. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  604. <Operation>1</Operation>
  605. </Platform>
  606. <Platform Name="iOSSimulator">
  607. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  608. <Operation>1</Operation>
  609. </Platform>
  610. </DeployClass>
  611. <DeployClass Name="iPad_Launch1024">
  612. <Platform Name="iOSDevice32">
  613. <Operation>1</Operation>
  614. </Platform>
  615. <Platform Name="iOSDevice64">
  616. <Operation>1</Operation>
  617. </Platform>
  618. <Platform Name="iOSSimulator">
  619. <Operation>1</Operation>
  620. </Platform>
  621. </DeployClass>
  622. <DeployClass Name="iPad_Launch1024x768">
  623. <Platform Name="iOSDevice32">
  624. <Operation>1</Operation>
  625. </Platform>
  626. <Platform Name="iOSDevice64">
  627. <Operation>1</Operation>
  628. </Platform>
  629. <Platform Name="iOSSimulator">
  630. <Operation>1</Operation>
  631. </Platform>
  632. </DeployClass>
  633. <DeployClass Name="iPad_Launch1536">
  634. <Platform Name="iOSDevice32">
  635. <Operation>1</Operation>
  636. </Platform>
  637. <Platform Name="iOSDevice64">
  638. <Operation>1</Operation>
  639. </Platform>
  640. <Platform Name="iOSSimulator">
  641. <Operation>1</Operation>
  642. </Platform>
  643. </DeployClass>
  644. <DeployClass Name="iPad_Launch1536x2048">
  645. <Platform Name="iOSDevice32">
  646. <Operation>1</Operation>
  647. </Platform>
  648. <Platform Name="iOSDevice64">
  649. <Operation>1</Operation>
  650. </Platform>
  651. <Platform Name="iOSSimulator">
  652. <Operation>1</Operation>
  653. </Platform>
  654. </DeployClass>
  655. <DeployClass Name="iPad_Launch1668">
  656. <Platform Name="iOSDevice32">
  657. <Operation>1</Operation>
  658. </Platform>
  659. <Platform Name="iOSDevice64">
  660. <Operation>1</Operation>
  661. </Platform>
  662. <Platform Name="iOSSimulator">
  663. <Operation>1</Operation>
  664. </Platform>
  665. </DeployClass>
  666. <DeployClass Name="iPad_Launch1668x2388">
  667. <Platform Name="iOSDevice32">
  668. <Operation>1</Operation>
  669. </Platform>
  670. <Platform Name="iOSDevice64">
  671. <Operation>1</Operation>
  672. </Platform>
  673. <Platform Name="iOSSimulator">
  674. <Operation>1</Operation>
  675. </Platform>
  676. </DeployClass>
  677. <DeployClass Name="iPad_Launch2048">
  678. <Platform Name="iOSDevice32">
  679. <Operation>1</Operation>
  680. </Platform>
  681. <Platform Name="iOSDevice64">
  682. <Operation>1</Operation>
  683. </Platform>
  684. <Platform Name="iOSSimulator">
  685. <Operation>1</Operation>
  686. </Platform>
  687. </DeployClass>
  688. <DeployClass Name="iPad_Launch2048x1536">
  689. <Platform Name="iOSDevice32">
  690. <Operation>1</Operation>
  691. </Platform>
  692. <Platform Name="iOSDevice64">
  693. <Operation>1</Operation>
  694. </Platform>
  695. <Platform Name="iOSSimulator">
  696. <Operation>1</Operation>
  697. </Platform>
  698. </DeployClass>
  699. <DeployClass Name="iPad_Launch2048x2732">
  700. <Platform Name="iOSDevice32">
  701. <Operation>1</Operation>
  702. </Platform>
  703. <Platform Name="iOSDevice64">
  704. <Operation>1</Operation>
  705. </Platform>
  706. <Platform Name="iOSSimulator">
  707. <Operation>1</Operation>
  708. </Platform>
  709. </DeployClass>
  710. <DeployClass Name="iPad_Launch2224">
  711. <Platform Name="iOSDevice32">
  712. <Operation>1</Operation>
  713. </Platform>
  714. <Platform Name="iOSDevice64">
  715. <Operation>1</Operation>
  716. </Platform>
  717. <Platform Name="iOSSimulator">
  718. <Operation>1</Operation>
  719. </Platform>
  720. </DeployClass>
  721. <DeployClass Name="iPad_Launch2388x1668">
  722. <Platform Name="iOSDevice32">
  723. <Operation>1</Operation>
  724. </Platform>
  725. <Platform Name="iOSDevice64">
  726. <Operation>1</Operation>
  727. </Platform>
  728. <Platform Name="iOSSimulator">
  729. <Operation>1</Operation>
  730. </Platform>
  731. </DeployClass>
  732. <DeployClass Name="iPad_Launch2732x2048">
  733. <Platform Name="iOSDevice32">
  734. <Operation>1</Operation>
  735. </Platform>
  736. <Platform Name="iOSDevice64">
  737. <Operation>1</Operation>
  738. </Platform>
  739. <Platform Name="iOSSimulator">
  740. <Operation>1</Operation>
  741. </Platform>
  742. </DeployClass>
  743. <DeployClass Name="iPad_Launch2x">
  744. <Platform Name="iOSDevice64">
  745. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  746. <Operation>1</Operation>
  747. </Platform>
  748. <Platform Name="iOSSimulator">
  749. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  750. <Operation>1</Operation>
  751. </Platform>
  752. </DeployClass>
  753. <DeployClass Name="iPad_Launch768">
  754. <Platform Name="iOSDevice32">
  755. <Operation>1</Operation>
  756. </Platform>
  757. <Platform Name="iOSDevice64">
  758. <Operation>1</Operation>
  759. </Platform>
  760. <Platform Name="iOSSimulator">
  761. <Operation>1</Operation>
  762. </Platform>
  763. </DeployClass>
  764. <DeployClass Name="iPad_Launch768x1024">
  765. <Platform Name="iOSDevice32">
  766. <Operation>1</Operation>
  767. </Platform>
  768. <Platform Name="iOSDevice64">
  769. <Operation>1</Operation>
  770. </Platform>
  771. <Platform Name="iOSSimulator">
  772. <Operation>1</Operation>
  773. </Platform>
  774. </DeployClass>
  775. <DeployClass Name="iPad_LaunchDark2x">
  776. <Platform Name="iOSDevice64">
  777. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  778. <Operation>1</Operation>
  779. </Platform>
  780. <Platform Name="iOSSimulator">
  781. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  782. <Operation>1</Operation>
  783. </Platform>
  784. </DeployClass>
  785. <DeployClass Name="iPad_Notification40">
  786. <Platform Name="iOSDevice64">
  787. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  788. <Operation>1</Operation>
  789. </Platform>
  790. <Platform Name="iOSSimulator">
  791. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  792. <Operation>1</Operation>
  793. </Platform>
  794. </DeployClass>
  795. <DeployClass Name="iPad_Setting58">
  796. <Platform Name="iOSDevice64">
  797. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  798. <Operation>1</Operation>
  799. </Platform>
  800. <Platform Name="iOSSimulator">
  801. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  802. <Operation>1</Operation>
  803. </Platform>
  804. </DeployClass>
  805. <DeployClass Name="iPad_SpotLight80">
  806. <Platform Name="iOSDevice64">
  807. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  808. <Operation>1</Operation>
  809. </Platform>
  810. <Platform Name="iOSSimulator">
  811. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  812. <Operation>1</Operation>
  813. </Platform>
  814. </DeployClass>
  815. <DeployClass Name="iPhone_AppIcon120">
  816. <Platform Name="iOSDevice64">
  817. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  818. <Operation>1</Operation>
  819. </Platform>
  820. <Platform Name="iOSSimulator">
  821. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  822. <Operation>1</Operation>
  823. </Platform>
  824. </DeployClass>
  825. <DeployClass Name="iPhone_AppIcon180">
  826. <Platform Name="iOSDevice64">
  827. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  828. <Operation>1</Operation>
  829. </Platform>
  830. <Platform Name="iOSSimulator">
  831. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  832. <Operation>1</Operation>
  833. </Platform>
  834. </DeployClass>
  835. <DeployClass Name="iPhone_Launch1125">
  836. <Platform Name="iOSDevice32">
  837. <Operation>1</Operation>
  838. </Platform>
  839. <Platform Name="iOSDevice64">
  840. <Operation>1</Operation>
  841. </Platform>
  842. <Platform Name="iOSSimulator">
  843. <Operation>1</Operation>
  844. </Platform>
  845. </DeployClass>
  846. <DeployClass Name="iPhone_Launch1136x640">
  847. <Platform Name="iOSDevice32">
  848. <Operation>1</Operation>
  849. </Platform>
  850. <Platform Name="iOSDevice64">
  851. <Operation>1</Operation>
  852. </Platform>
  853. <Platform Name="iOSSimulator">
  854. <Operation>1</Operation>
  855. </Platform>
  856. </DeployClass>
  857. <DeployClass Name="iPhone_Launch1242">
  858. <Platform Name="iOSDevice32">
  859. <Operation>1</Operation>
  860. </Platform>
  861. <Platform Name="iOSDevice64">
  862. <Operation>1</Operation>
  863. </Platform>
  864. <Platform Name="iOSSimulator">
  865. <Operation>1</Operation>
  866. </Platform>
  867. </DeployClass>
  868. <DeployClass Name="iPhone_Launch1242x2688">
  869. <Platform Name="iOSDevice32">
  870. <Operation>1</Operation>
  871. </Platform>
  872. <Platform Name="iOSDevice64">
  873. <Operation>1</Operation>
  874. </Platform>
  875. <Platform Name="iOSSimulator">
  876. <Operation>1</Operation>
  877. </Platform>
  878. </DeployClass>
  879. <DeployClass Name="iPhone_Launch1334">
  880. <Platform Name="iOSDevice32">
  881. <Operation>1</Operation>
  882. </Platform>
  883. <Platform Name="iOSDevice64">
  884. <Operation>1</Operation>
  885. </Platform>
  886. <Platform Name="iOSSimulator">
  887. <Operation>1</Operation>
  888. </Platform>
  889. </DeployClass>
  890. <DeployClass Name="iPhone_Launch1792">
  891. <Platform Name="iOSDevice32">
  892. <Operation>1</Operation>
  893. </Platform>
  894. <Platform Name="iOSDevice64">
  895. <Operation>1</Operation>
  896. </Platform>
  897. <Platform Name="iOSSimulator">
  898. <Operation>1</Operation>
  899. </Platform>
  900. </DeployClass>
  901. <DeployClass Name="iPhone_Launch2208">
  902. <Platform Name="iOSDevice32">
  903. <Operation>1</Operation>
  904. </Platform>
  905. <Platform Name="iOSDevice64">
  906. <Operation>1</Operation>
  907. </Platform>
  908. <Platform Name="iOSSimulator">
  909. <Operation>1</Operation>
  910. </Platform>
  911. </DeployClass>
  912. <DeployClass Name="iPhone_Launch2436">
  913. <Platform Name="iOSDevice32">
  914. <Operation>1</Operation>
  915. </Platform>
  916. <Platform Name="iOSDevice64">
  917. <Operation>1</Operation>
  918. </Platform>
  919. <Platform Name="iOSSimulator">
  920. <Operation>1</Operation>
  921. </Platform>
  922. </DeployClass>
  923. <DeployClass Name="iPhone_Launch2688x1242">
  924. <Platform Name="iOSDevice32">
  925. <Operation>1</Operation>
  926. </Platform>
  927. <Platform Name="iOSDevice64">
  928. <Operation>1</Operation>
  929. </Platform>
  930. <Platform Name="iOSSimulator">
  931. <Operation>1</Operation>
  932. </Platform>
  933. </DeployClass>
  934. <DeployClass Name="iPhone_Launch2x">
  935. <Platform Name="iOSDevice64">
  936. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  937. <Operation>1</Operation>
  938. </Platform>
  939. <Platform Name="iOSSimulator">
  940. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  941. <Operation>1</Operation>
  942. </Platform>
  943. </DeployClass>
  944. <DeployClass Name="iPhone_Launch320">
  945. <Platform Name="iOSDevice32">
  946. <Operation>1</Operation>
  947. </Platform>
  948. <Platform Name="iOSDevice64">
  949. <Operation>1</Operation>
  950. </Platform>
  951. <Platform Name="iOSSimulator">
  952. <Operation>1</Operation>
  953. </Platform>
  954. </DeployClass>
  955. <DeployClass Name="iPhone_Launch3x">
  956. <Platform Name="iOSDevice64">
  957. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  958. <Operation>1</Operation>
  959. </Platform>
  960. <Platform Name="iOSSimulator">
  961. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  962. <Operation>1</Operation>
  963. </Platform>
  964. </DeployClass>
  965. <DeployClass Name="iPhone_Launch640">
  966. <Platform Name="iOSDevice32">
  967. <Operation>1</Operation>
  968. </Platform>
  969. <Platform Name="iOSDevice64">
  970. <Operation>1</Operation>
  971. </Platform>
  972. <Platform Name="iOSSimulator">
  973. <Operation>1</Operation>
  974. </Platform>
  975. </DeployClass>
  976. <DeployClass Name="iPhone_Launch640x1136">
  977. <Platform Name="iOSDevice32">
  978. <Operation>1</Operation>
  979. </Platform>
  980. <Platform Name="iOSDevice64">
  981. <Operation>1</Operation>
  982. </Platform>
  983. <Platform Name="iOSSimulator">
  984. <Operation>1</Operation>
  985. </Platform>
  986. </DeployClass>
  987. <DeployClass Name="iPhone_Launch750">
  988. <Platform Name="iOSDevice32">
  989. <Operation>1</Operation>
  990. </Platform>
  991. <Platform Name="iOSDevice64">
  992. <Operation>1</Operation>
  993. </Platform>
  994. <Platform Name="iOSSimulator">
  995. <Operation>1</Operation>
  996. </Platform>
  997. </DeployClass>
  998. <DeployClass Name="iPhone_Launch828">
  999. <Platform Name="iOSDevice32">
  1000. <Operation>1</Operation>
  1001. </Platform>
  1002. <Platform Name="iOSDevice64">
  1003. <Operation>1</Operation>
  1004. </Platform>
  1005. <Platform Name="iOSSimulator">
  1006. <Operation>1</Operation>
  1007. </Platform>
  1008. </DeployClass>
  1009. <DeployClass Name="iPhone_LaunchDark2x">
  1010. <Platform Name="iOSDevice64">
  1011. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  1012. <Operation>1</Operation>
  1013. </Platform>
  1014. <Platform Name="iOSSimulator">
  1015. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  1016. <Operation>1</Operation>
  1017. </Platform>
  1018. </DeployClass>
  1019. <DeployClass Name="iPhone_LaunchDark3x">
  1020. <Platform Name="iOSDevice64">
  1021. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  1022. <Operation>1</Operation>
  1023. </Platform>
  1024. <Platform Name="iOSSimulator">
  1025. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  1026. <Operation>1</Operation>
  1027. </Platform>
  1028. </DeployClass>
  1029. <DeployClass Name="iPhone_Notification40">
  1030. <Platform Name="iOSDevice64">
  1031. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1032. <Operation>1</Operation>
  1033. </Platform>
  1034. <Platform Name="iOSSimulator">
  1035. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1036. <Operation>1</Operation>
  1037. </Platform>
  1038. </DeployClass>
  1039. <DeployClass Name="iPhone_Notification60">
  1040. <Platform Name="iOSDevice64">
  1041. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1042. <Operation>1</Operation>
  1043. </Platform>
  1044. <Platform Name="iOSSimulator">
  1045. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1046. <Operation>1</Operation>
  1047. </Platform>
  1048. </DeployClass>
  1049. <DeployClass Name="iPhone_Setting58">
  1050. <Platform Name="iOSDevice64">
  1051. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1052. <Operation>1</Operation>
  1053. </Platform>
  1054. <Platform Name="iOSSimulator">
  1055. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1056. <Operation>1</Operation>
  1057. </Platform>
  1058. </DeployClass>
  1059. <DeployClass Name="iPhone_Setting87">
  1060. <Platform Name="iOSDevice64">
  1061. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1062. <Operation>1</Operation>
  1063. </Platform>
  1064. <Platform Name="iOSSimulator">
  1065. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1066. <Operation>1</Operation>
  1067. </Platform>
  1068. </DeployClass>
  1069. <DeployClass Name="iPhone_Spotlight120">
  1070. <Platform Name="iOSDevice64">
  1071. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1072. <Operation>1</Operation>
  1073. </Platform>
  1074. <Platform Name="iOSSimulator">
  1075. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1076. <Operation>1</Operation>
  1077. </Platform>
  1078. </DeployClass>
  1079. <DeployClass Name="iPhone_Spotlight80">
  1080. <Platform Name="iOSDevice64">
  1081. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1082. <Operation>1</Operation>
  1083. </Platform>
  1084. <Platform Name="iOSSimulator">
  1085. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1086. <Operation>1</Operation>
  1087. </Platform>
  1088. </DeployClass>
  1089. <DeployClass Name="ProjectAndroidManifest">
  1090. <Platform Name="Android">
  1091. <Operation>1</Operation>
  1092. </Platform>
  1093. <Platform Name="Android64">
  1094. <Operation>1</Operation>
  1095. </Platform>
  1096. </DeployClass>
  1097. <DeployClass Name="ProjectiOSDeviceDebug">
  1098. <Platform Name="iOSDevice32">
  1099. <RemoteDir>..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF</RemoteDir>
  1100. <Operation>1</Operation>
  1101. </Platform>
  1102. <Platform Name="iOSDevice64">
  1103. <RemoteDir>..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF</RemoteDir>
  1104. <Operation>1</Operation>
  1105. </Platform>
  1106. </DeployClass>
  1107. <DeployClass Name="ProjectiOSDeviceResourceRules">
  1108. <Platform Name="iOSDevice32">
  1109. <Operation>1</Operation>
  1110. </Platform>
  1111. <Platform Name="iOSDevice64">
  1112. <Operation>1</Operation>
  1113. </Platform>
  1114. </DeployClass>
  1115. <DeployClass Name="ProjectiOSEntitlements">
  1116. <Platform Name="iOSDevice32">
  1117. <RemoteDir>..\</RemoteDir>
  1118. <Operation>1</Operation>
  1119. </Platform>
  1120. <Platform Name="iOSDevice64">
  1121. <RemoteDir>..\</RemoteDir>
  1122. <Operation>1</Operation>
  1123. </Platform>
  1124. </DeployClass>
  1125. <DeployClass Name="ProjectiOSInfoPList">
  1126. <Platform Name="iOSDevice32">
  1127. <Operation>1</Operation>
  1128. </Platform>
  1129. <Platform Name="iOSDevice64">
  1130. <Operation>1</Operation>
  1131. </Platform>
  1132. <Platform Name="iOSSimulator">
  1133. <Operation>1</Operation>
  1134. </Platform>
  1135. </DeployClass>
  1136. <DeployClass Name="ProjectiOSLaunchScreen">
  1137. <Platform Name="iOSDevice64">
  1138. <RemoteDir>..\$(PROJECTNAME).launchscreen</RemoteDir>
  1139. <Operation>64</Operation>
  1140. </Platform>
  1141. <Platform Name="iOSSimulator">
  1142. <RemoteDir>..\$(PROJECTNAME).launchscreen</RemoteDir>
  1143. <Operation>64</Operation>
  1144. </Platform>
  1145. </DeployClass>
  1146. <DeployClass Name="ProjectiOSResource">
  1147. <Platform Name="iOSDevice32">
  1148. <Operation>1</Operation>
  1149. </Platform>
  1150. <Platform Name="iOSDevice64">
  1151. <Operation>1</Operation>
  1152. </Platform>
  1153. <Platform Name="iOSSimulator">
  1154. <Operation>1</Operation>
  1155. </Platform>
  1156. </DeployClass>
  1157. <DeployClass Name="ProjectOSXDebug">
  1158. <Platform Name="OSX64">
  1159. <RemoteDir>..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF</RemoteDir>
  1160. <Operation>1</Operation>
  1161. </Platform>
  1162. <Platform Name="OSXARM64">
  1163. <RemoteDir>..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF</RemoteDir>
  1164. <Operation>1</Operation>
  1165. </Platform>
  1166. </DeployClass>
  1167. <DeployClass Name="ProjectOSXEntitlements">
  1168. <Platform Name="OSX32">
  1169. <RemoteDir>..\</RemoteDir>
  1170. <Operation>1</Operation>
  1171. </Platform>
  1172. <Platform Name="OSX64">
  1173. <RemoteDir>..\</RemoteDir>
  1174. <Operation>1</Operation>
  1175. </Platform>
  1176. <Platform Name="OSXARM64">
  1177. <RemoteDir>..\</RemoteDir>
  1178. <Operation>1</Operation>
  1179. </Platform>
  1180. </DeployClass>
  1181. <DeployClass Name="ProjectOSXInfoPList">
  1182. <Platform Name="OSX32">
  1183. <RemoteDir>Contents</RemoteDir>
  1184. <Operation>1</Operation>
  1185. </Platform>
  1186. <Platform Name="OSX64">
  1187. <RemoteDir>Contents</RemoteDir>
  1188. <Operation>1</Operation>
  1189. </Platform>
  1190. <Platform Name="OSXARM64">
  1191. <RemoteDir>Contents</RemoteDir>
  1192. <Operation>1</Operation>
  1193. </Platform>
  1194. </DeployClass>
  1195. <DeployClass Name="ProjectOSXResource">
  1196. <Platform Name="OSX32">
  1197. <RemoteDir>Contents\Resources</RemoteDir>
  1198. <Operation>1</Operation>
  1199. </Platform>
  1200. <Platform Name="OSX64">
  1201. <RemoteDir>Contents\Resources</RemoteDir>
  1202. <Operation>1</Operation>
  1203. </Platform>
  1204. <Platform Name="OSXARM64">
  1205. <RemoteDir>Contents\Resources</RemoteDir>
  1206. <Operation>1</Operation>
  1207. </Platform>
  1208. </DeployClass>
  1209. <DeployClass Required="true" Name="ProjectOutput">
  1210. <Platform Name="Android">
  1211. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  1212. <Operation>1</Operation>
  1213. </Platform>
  1214. <Platform Name="Android64">
  1215. <RemoteDir>library\lib\arm64-v8a</RemoteDir>
  1216. <Operation>1</Operation>
  1217. </Platform>
  1218. <Platform Name="iOSDevice32">
  1219. <Operation>1</Operation>
  1220. </Platform>
  1221. <Platform Name="iOSDevice64">
  1222. <Operation>1</Operation>
  1223. </Platform>
  1224. <Platform Name="iOSSimulator">
  1225. <Operation>1</Operation>
  1226. </Platform>
  1227. <Platform Name="Linux64">
  1228. <Operation>1</Operation>
  1229. </Platform>
  1230. <Platform Name="OSX32">
  1231. <RemoteDir>Contents\MacOS</RemoteDir>
  1232. <Operation>1</Operation>
  1233. </Platform>
  1234. <Platform Name="OSX64">
  1235. <RemoteDir>Contents\MacOS</RemoteDir>
  1236. <Operation>1</Operation>
  1237. </Platform>
  1238. <Platform Name="OSXARM64">
  1239. <RemoteDir>Contents\MacOS</RemoteDir>
  1240. <Operation>1</Operation>
  1241. </Platform>
  1242. <Platform Name="Win32">
  1243. <Operation>0</Operation>
  1244. </Platform>
  1245. </DeployClass>
  1246. <DeployClass Name="ProjectOutput_Android32">
  1247. <Platform Name="Android64">
  1248. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  1249. <Operation>1</Operation>
  1250. </Platform>
  1251. </DeployClass>
  1252. <DeployClass Name="ProjectUWPManifest">
  1253. <Platform Name="Win32">
  1254. <Operation>1</Operation>
  1255. </Platform>
  1256. <Platform Name="Win64">
  1257. <Operation>1</Operation>
  1258. </Platform>
  1259. </DeployClass>
  1260. <DeployClass Name="UWP_DelphiLogo150">
  1261. <Platform Name="Win32">
  1262. <RemoteDir>Assets</RemoteDir>
  1263. <Operation>1</Operation>
  1264. </Platform>
  1265. <Platform Name="Win64">
  1266. <RemoteDir>Assets</RemoteDir>
  1267. <Operation>1</Operation>
  1268. </Platform>
  1269. </DeployClass>
  1270. <DeployClass Name="UWP_DelphiLogo44">
  1271. <Platform Name="Win32">
  1272. <RemoteDir>Assets</RemoteDir>
  1273. <Operation>1</Operation>
  1274. </Platform>
  1275. <Platform Name="Win64">
  1276. <RemoteDir>Assets</RemoteDir>
  1277. <Operation>1</Operation>
  1278. </Platform>
  1279. </DeployClass>
  1280. <ProjectRoot Platform="OSX32" Name="$(PROJECTNAME).app"/>
  1281. <ProjectRoot Platform="OSX64" Name="$(PROJECTNAME).app"/>
  1282. <ProjectRoot Platform="Win32" Name="$(PROJECTNAME)"/>
  1283. <ProjectRoot Platform="Android64" Name="$(PROJECTNAME)"/>
  1284. <ProjectRoot Platform="Android" Name="$(PROJECTNAME)"/>
  1285. <ProjectRoot Platform="Win64" Name="$(PROJECTNAME)"/>
  1286. <ProjectRoot Platform="OSXARM64" Name="$(PROJECTNAME).app"/>
  1287. <ProjectRoot Platform="iOSDevice32" Name="$(PROJECTNAME).app"/>
  1288. <ProjectRoot Platform="iOSDevice64" Name="$(PROJECTNAME).app"/>
  1289. <ProjectRoot Platform="Linux64" Name="$(PROJECTNAME)"/>
  1290. <ProjectRoot Platform="iOSSimulator" Name="$(PROJECTNAME).app"/>
  1291. </Deployment>
  1292. </BorlandProject>
  1293. <ProjectFileVersion>12</ProjectFileVersion>
  1294. </ProjectExtensions>
  1295. <Import Project="$(BDS)\Bin\CodeGear.Delphi.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Delphi.Targets')"/>
  1296. <Import Project="$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj" Condition="Exists('$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj')"/>
  1297. <Import Project="$(MSBuildProjectName).deployproj" Condition="Exists('$(MSBuildProjectName).deployproj')"/>
  1298. </Project>