Rotate.dproj 61 KB

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