com.beanbag.huaweiads 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (731) hide show
  1. package/Documentation.md +9 -0
  2. package/Documentation.md.meta +7 -0
  3. package/Editor/Editor/Extensions/ActionExtensions.cs +32 -0
  4. package/Editor/Editor/Extensions/ActionExtensions.cs.meta +11 -0
  5. package/Editor/Editor/Extensions/CollectionExtensions.cs +36 -0
  6. package/Editor/Editor/Extensions/CollectionExtensions.cs.meta +11 -0
  7. package/Editor/Editor/Extensions/StringExtensions.cs +119 -0
  8. package/Editor/Editor/Extensions/StringExtensions.cs.meta +11 -0
  9. package/Editor/Editor/Extensions/WindowExtensions.cs +59 -0
  10. package/Editor/Editor/Extensions/WindowExtensions.cs.meta +11 -0
  11. package/Editor/Editor/Extensions.meta +8 -0
  12. package/Editor/Editor/General/UI/Button/Button.cs +143 -0
  13. package/Editor/Editor/General/UI/Button/Button.cs.meta +11 -0
  14. package/Editor/Editor/General/UI/Button/Clickable.cs +30 -0
  15. package/Editor/Editor/General/UI/Button/Clickable.cs.meta +11 -0
  16. package/Editor/Editor/General/UI/Button.meta +8 -0
  17. package/Editor/Editor/General/UI/Collections/IReadOnlyList.cs +10 -0
  18. package/Editor/Editor/General/UI/Collections/IReadOnlyList.cs.meta +11 -0
  19. package/Editor/Editor/General/UI/Collections.meta +8 -0
  20. package/Editor/Editor/General/UI/ConditionalDrawer.cs +25 -0
  21. package/Editor/Editor/General/UI/ConditionalDrawer.cs.meta +11 -0
  22. package/Editor/Editor/General/UI/CustomEditorDrawer.cs +12 -0
  23. package/Editor/Editor/General/UI/CustomEditorDrawer.cs.meta +11 -0
  24. package/Editor/Editor/General/UI/Depth.cs +27 -0
  25. package/Editor/Editor/General/UI/Depth.cs.meta +11 -0
  26. package/Editor/Editor/General/UI/DisabledDrawer.cs +53 -0
  27. package/Editor/Editor/General/UI/DisabledDrawer.cs.meta +11 -0
  28. package/Editor/Editor/General/UI/Dropdown/EnumDropdown.cs +35 -0
  29. package/Editor/Editor/General/UI/Dropdown/EnumDropdown.cs.meta +11 -0
  30. package/Editor/Editor/General/UI/Dropdown/EnumFlagsDropdown.cs +24 -0
  31. package/Editor/Editor/General/UI/Dropdown/EnumFlagsDropdown.cs.meta +11 -0
  32. package/Editor/Editor/General/UI/Dropdown/IDropdown.cs +9 -0
  33. package/Editor/Editor/General/UI/Dropdown/IDropdown.cs.meta +11 -0
  34. package/Editor/Editor/General/UI/Dropdown/StringDropdown.cs +46 -0
  35. package/Editor/Editor/General/UI/Dropdown/StringDropdown.cs.meta +11 -0
  36. package/Editor/Editor/General/UI/Dropdown.meta +8 -0
  37. package/Editor/Editor/General/UI/Focusable.cs +53 -0
  38. package/Editor/Editor/General/UI/Focusable.cs.meta +11 -0
  39. package/Editor/Editor/General/UI/Foldout.cs +61 -0
  40. package/Editor/Editor/General/UI/Foldout.cs.meta +11 -0
  41. package/Editor/Editor/General/UI/HelpBox/HelpBox.cs +42 -0
  42. package/Editor/Editor/General/UI/HelpBox/HelpBox.cs.meta +11 -0
  43. package/Editor/Editor/General/UI/HelpBox/RichHelpBox.cs +35 -0
  44. package/Editor/Editor/General/UI/HelpBox/RichHelpBox.cs.meta +11 -0
  45. package/Editor/Editor/General/UI/HelpBox.meta +8 -0
  46. package/Editor/Editor/General/UI/HorizontalLine.cs +13 -0
  47. package/Editor/Editor/General/UI/HorizontalLine.cs.meta +11 -0
  48. package/Editor/Editor/General/UI/IDrawer.cs +7 -0
  49. package/Editor/Editor/General/UI/IDrawer.cs.meta +11 -0
  50. package/Editor/Editor/General/UI/Image/Image.cs +49 -0
  51. package/Editor/Editor/General/UI/Image/Image.cs.meta +11 -0
  52. package/Editor/Editor/General/UI/Image.meta +8 -0
  53. package/Editor/Editor/General/UI/InlineGroup.cs +41 -0
  54. package/Editor/Editor/General/UI/InlineGroup.cs.meta +11 -0
  55. package/Editor/Editor/General/UI/Label/DelegatedLabel.cs +31 -0
  56. package/Editor/Editor/General/UI/Label/DelegatedLabel.cs.meta +11 -0
  57. package/Editor/Editor/General/UI/Label/Label.cs +133 -0
  58. package/Editor/Editor/General/UI/Label/Label.cs.meta +11 -0
  59. package/Editor/Editor/General/UI/Label.meta +8 -0
  60. package/Editor/Editor/General/UI/List/AlteratingListDrawer.cs +93 -0
  61. package/Editor/Editor/General/UI/List/AlteratingListDrawer.cs.meta +11 -0
  62. package/Editor/Editor/General/UI/List/ListDrawer.cs +77 -0
  63. package/Editor/Editor/General/UI/List/ListDrawer.cs.meta +11 -0
  64. package/Editor/Editor/General/UI/List.meta +8 -0
  65. package/Editor/Editor/General/UI/LongProcess.cs +24 -0
  66. package/Editor/Editor/General/UI/LongProcess.cs.meta +11 -0
  67. package/Editor/Editor/General/UI/Menu/EditableMenu.cs +46 -0
  68. package/Editor/Editor/General/UI/Menu/EditableMenu.cs.meta +11 -0
  69. package/Editor/Editor/General/UI/Menu/Menu.cs +55 -0
  70. package/Editor/Editor/General/UI/Menu/Menu.cs.meta +11 -0
  71. package/Editor/Editor/General/UI/Menu.meta +8 -0
  72. package/Editor/Editor/General/UI/PersistentFoldout.cs +72 -0
  73. package/Editor/Editor/General/UI/PersistentFoldout.cs.meta +11 -0
  74. package/Editor/Editor/General/UI/ScrollView/ScrollView.cs +16 -0
  75. package/Editor/Editor/General/UI/ScrollView/ScrollView.cs.meta +11 -0
  76. package/Editor/Editor/General/UI/ScrollView.meta +8 -0
  77. package/Editor/Editor/General/UI/Sequence/EmptySequenceDrawer.cs +33 -0
  78. package/Editor/Editor/General/UI/Sequence/EmptySequenceDrawer.cs.meta +11 -0
  79. package/Editor/Editor/General/UI/Sequence/HorizontalSequenceDrawer.cs +18 -0
  80. package/Editor/Editor/General/UI/Sequence/HorizontalSequenceDrawer.cs.meta +11 -0
  81. package/Editor/Editor/General/UI/Sequence/SequenceDrawer.cs +74 -0
  82. package/Editor/Editor/General/UI/Sequence/SequenceDrawer.cs.meta +11 -0
  83. package/Editor/Editor/General/UI/Sequence/VerticalSequenceDrawer.cs +28 -0
  84. package/Editor/Editor/General/UI/Sequence/VerticalSequenceDrawer.cs.meta +11 -0
  85. package/Editor/Editor/General/UI/Sequence.meta +8 -0
  86. package/Editor/Editor/General/UI/Space.cs +19 -0
  87. package/Editor/Editor/General/UI/Space.cs.meta +11 -0
  88. package/Editor/Editor/General/UI/Spacer.cs +13 -0
  89. package/Editor/Editor/General/UI/Spacer.cs.meta +11 -0
  90. package/Editor/Editor/General/UI/TabBar/TabBar.cs +42 -0
  91. package/Editor/Editor/General/UI/TabBar/TabBar.cs.meta +11 -0
  92. package/Editor/Editor/General/UI/TabBar/TabView.cs +13 -0
  93. package/Editor/Editor/General/UI/TabBar/TabView.cs.meta +11 -0
  94. package/Editor/Editor/General/UI/TabBar.meta +8 -0
  95. package/Editor/Editor/General/UI/TextArea/TextArea.cs +74 -0
  96. package/Editor/Editor/General/UI/TextArea/TextArea.cs.meta +11 -0
  97. package/Editor/Editor/General/UI/TextArea.meta +8 -0
  98. package/Editor/Editor/General/UI/TextField/ReturnChecker.cs +40 -0
  99. package/Editor/Editor/General/UI/TextField/ReturnChecker.cs.meta +11 -0
  100. package/Editor/Editor/General/UI/TextField/TextField.cs +169 -0
  101. package/Editor/Editor/General/UI/TextField/TextField.cs.meta +11 -0
  102. package/Editor/Editor/General/UI/TextField/TextFieldWithAccept.cs +65 -0
  103. package/Editor/Editor/General/UI/TextField/TextFieldWithAccept.cs.meta +11 -0
  104. package/Editor/Editor/General/UI/TextField.meta +8 -0
  105. package/Editor/Editor/General/UI/TimedDrawer.cs +35 -0
  106. package/Editor/Editor/General/UI/TimedDrawer.cs.meta +11 -0
  107. package/Editor/Editor/General/UI/Toggle/Toggle.cs +67 -0
  108. package/Editor/Editor/General/UI/Toggle/Toggle.cs.meta +11 -0
  109. package/Editor/Editor/General/UI/Toggle/ToggledTextFieldWithButton.cs +41 -0
  110. package/Editor/Editor/General/UI/Toggle/ToggledTextFieldWithButton.cs.meta +11 -0
  111. package/Editor/Editor/General/UI/Toggle.meta +8 -0
  112. package/Editor/Editor/General/UI/Window/DisplayDialog.cs +55 -0
  113. package/Editor/Editor/General/UI/Window/DisplayDialog.cs.meta +11 -0
  114. package/Editor/Editor/General/UI/Window/HMSEditorWindow.cs +60 -0
  115. package/Editor/Editor/General/UI/Window/HMSEditorWindow.cs.meta +11 -0
  116. package/Editor/Editor/General/UI/Window/ModalDialog.cs +93 -0
  117. package/Editor/Editor/General/UI/Window/ModalDialog.cs.meta +11 -0
  118. package/Editor/Editor/General/UI/Window/ModalWindow.cs +88 -0
  119. package/Editor/Editor/General/UI/Window/ModalWindow.cs.meta +11 -0
  120. package/Editor/Editor/General/UI/Window.meta +8 -0
  121. package/Editor/Editor/General/UI.meta +8 -0
  122. package/Editor/Editor/General.meta +8 -0
  123. package/Editor/Editor/HuaweiAdsFileCopier.cs +62 -0
  124. package/Editor/Editor/HuaweiAdsFileCopier.cs.meta +11 -0
  125. package/Editor/Editor/HuaweiMobileServices.Editor.asmdef +17 -0
  126. package/Editor/Editor/HuaweiMobileServices.Editor.asmdef.meta +7 -0
  127. package/Editor/Editor/Utils/HMSEditorUtils.cs +490 -0
  128. package/Editor/Editor/Utils/HMSEditorUtils.cs.meta +11 -0
  129. package/Editor/Editor/Utils/HMSExcelHelper.cs +50 -0
  130. package/Editor/Editor/Utils/HMSExcelHelper.cs.meta +11 -0
  131. package/Editor/Editor/Utils/HMSGradleFixer.cs +178 -0
  132. package/Editor/Editor/Utils/HMSGradleFixer.cs.meta +11 -0
  133. package/Editor/Editor/Utils/HMSGradleWorker.cs +316 -0
  134. package/Editor/Editor/Utils/HMSGradleWorker.cs.meta +11 -0
  135. package/Editor/Editor/Utils/HMSPackageChecker.cs +26 -0
  136. package/Editor/Editor/Utils/HMSPackageChecker.cs.meta +11 -0
  137. package/Editor/Editor/Utils/HMSPluginUpdater.cs +208 -0
  138. package/Editor/Editor/Utils/HMSPluginUpdater.cs.meta +11 -0
  139. package/Editor/Editor/Utils/HMSPluginUpdaterInit.cs +20 -0
  140. package/Editor/Editor/Utils/HMSPluginUpdaterInit.cs.meta +11 -0
  141. package/Editor/Editor/Utils/HMSWebRequestHelper.cs +388 -0
  142. package/Editor/Editor/Utils/HMSWebRequestHelper.cs.meta +11 -0
  143. package/Editor/Editor/Utils/HMSWebUtils.cs +113 -0
  144. package/Editor/Editor/Utils/HMSWebUtils.cs.meta +11 -0
  145. package/Editor/Editor/Utils.meta +8 -0
  146. package/Editor/Editor/View/AdsTab/HMSAdsSettingsDrawer.cs +427 -0
  147. package/Editor/Editor/View/AdsTab/HMSAdsSettingsDrawer.cs.meta +11 -0
  148. package/Editor/Editor/View/AdsTab/HMSAdsTabFactory.cs +14 -0
  149. package/Editor/Editor/View/AdsTab/HMSAdsTabFactory.cs.meta +11 -0
  150. package/Editor/Editor/View/AdsTab.meta +8 -0
  151. package/Editor/Editor/View/CloudDBTab/HMSCloudDBSettingsDrawer.cs +208 -0
  152. package/Editor/Editor/View/CloudDBTab/HMSCloudDBSettingsDrawer.cs.meta +11 -0
  153. package/Editor/Editor/View/CloudDBTab/HMSCloudDBTabFactory.cs +13 -0
  154. package/Editor/Editor/View/CloudDBTab/HMSCloudDBTabFactory.cs.meta +11 -0
  155. package/Editor/Editor/View/CloudDBTab.meta +8 -0
  156. package/Editor/Editor/View/ConnectAPI/HMSConnectAPITabFactory.cs +30 -0
  157. package/Editor/Editor/View/ConnectAPI/HMSConnectAPITabFactory.cs.meta +11 -0
  158. package/Editor/Editor/View/ConnectAPI/HMSConnectAPIWindow.cs +22 -0
  159. package/Editor/Editor/View/ConnectAPI/HMSConnectAPIWindow.cs.meta +11 -0
  160. package/Editor/Editor/View/ConnectAPI/TokenObtainerEditor.cs +43 -0
  161. package/Editor/Editor/View/ConnectAPI/TokenObtainerEditor.cs.meta +11 -0
  162. package/Editor/Editor/View/ConnectAPI.meta +8 -0
  163. package/Editor/Editor/View/GameServiceTab/AchievementsManipulator.cs +92 -0
  164. package/Editor/Editor/View/GameServiceTab/AchievementsManipulator.cs.meta +11 -0
  165. package/Editor/Editor/View/GameServiceTab/HMSAchievementsAdderDrawer.cs +35 -0
  166. package/Editor/Editor/View/GameServiceTab/HMSAchievementsAdderDrawer.cs.meta +11 -0
  167. package/Editor/Editor/View/GameServiceTab/HMSGameServiceSettingsDrawer.cs +138 -0
  168. package/Editor/Editor/View/GameServiceTab/HMSGameServiceSettingsDrawer.cs.meta +11 -0
  169. package/Editor/Editor/View/GameServiceTab/HMSGameServiceTabFactory.cs +13 -0
  170. package/Editor/Editor/View/GameServiceTab/HMSGameServiceTabFactory.cs.meta +11 -0
  171. package/Editor/Editor/View/GameServiceTab/HMSLeaderboardAdderDrawer.cs +34 -0
  172. package/Editor/Editor/View/GameServiceTab/HMSLeaderboardAdderDrawer.cs.meta +11 -0
  173. package/Editor/Editor/View/GameServiceTab/LeaderboardManipulator.cs +92 -0
  174. package/Editor/Editor/View/GameServiceTab/LeaderboardManipulator.cs.meta +11 -0
  175. package/Editor/Editor/View/GameServiceTab.meta +8 -0
  176. package/Editor/Editor/View/InAppPurchaseTab/HMSIAPProductAdderDrawer.cs +36 -0
  177. package/Editor/Editor/View/InAppPurchaseTab/HMSIAPProductAdderDrawer.cs.meta +11 -0
  178. package/Editor/Editor/View/InAppPurchaseTab/HMSIAPSettingsDrawer.cs +195 -0
  179. package/Editor/Editor/View/InAppPurchaseTab/HMSIAPSettingsDrawer.cs.meta +11 -0
  180. package/Editor/Editor/View/InAppPurchaseTab/HMSIAPTabFactory.cs +14 -0
  181. package/Editor/Editor/View/InAppPurchaseTab/HMSIAPTabFactory.cs.meta +11 -0
  182. package/Editor/Editor/View/InAppPurchaseTab/IAPProductManipulator.cs +111 -0
  183. package/Editor/Editor/View/InAppPurchaseTab/IAPProductManipulator.cs.meta +11 -0
  184. package/Editor/Editor/View/InAppPurchaseTab.meta +8 -0
  185. package/Editor/Editor/View/KeyToolTab/HMSKeyToolWindow.cs +240 -0
  186. package/Editor/Editor/View/KeyToolTab/HMSKeyToolWindow.cs.meta +11 -0
  187. package/Editor/Editor/View/KeyToolTab.meta +8 -0
  188. package/Editor/Editor/View/KitSettingsTab/APMToggleEditor.cs +59 -0
  189. package/Editor/Editor/View/KitSettingsTab/APMToggleEditor.cs.meta +11 -0
  190. package/Editor/Editor/View/KitSettingsTab/AccountToggleEditor.cs +78 -0
  191. package/Editor/Editor/View/KitSettingsTab/AccountToggleEditor.cs.meta +11 -0
  192. package/Editor/Editor/View/KitSettingsTab/AdsToggleEditor.cs +76 -0
  193. package/Editor/Editor/View/KitSettingsTab/AdsToggleEditor.cs.meta +11 -0
  194. package/Editor/Editor/View/KitSettingsTab/AnalyticsToggleEditor.cs +92 -0
  195. package/Editor/Editor/View/KitSettingsTab/AnalyticsToggleEditor.cs.meta +11 -0
  196. package/Editor/Editor/View/KitSettingsTab/AppLinkingToggleEditor.cs +67 -0
  197. package/Editor/Editor/View/KitSettingsTab/AppLinkingToggleEditor.cs.meta +11 -0
  198. package/Editor/Editor/View/KitSettingsTab/AppMessagingToggleEditor.cs +57 -0
  199. package/Editor/Editor/View/KitSettingsTab/AppMessagingToggleEditor.cs.meta +11 -0
  200. package/Editor/Editor/View/KitSettingsTab/AuthToggleEditor.cs +71 -0
  201. package/Editor/Editor/View/KitSettingsTab/AuthToggleEditor.cs.meta +11 -0
  202. package/Editor/Editor/View/KitSettingsTab/CloudDBToggleEditor.cs +80 -0
  203. package/Editor/Editor/View/KitSettingsTab/CloudDBToggleEditor.cs.meta +11 -0
  204. package/Editor/Editor/View/KitSettingsTab/CloudStorageToggleEditor.cs +64 -0
  205. package/Editor/Editor/View/KitSettingsTab/CloudStorageToggleEditor.cs.meta +11 -0
  206. package/Editor/Editor/View/KitSettingsTab/CrashToggleEditor.cs +63 -0
  207. package/Editor/Editor/View/KitSettingsTab/CrashToggleEditor.cs.meta +11 -0
  208. package/Editor/Editor/View/KitSettingsTab/DriveKitToggleEditor.cs +74 -0
  209. package/Editor/Editor/View/KitSettingsTab/DriveKitToggleEditor.cs.meta +11 -0
  210. package/Editor/Editor/View/KitSettingsTab/GameServiceToggleEditor.cs +81 -0
  211. package/Editor/Editor/View/KitSettingsTab/GameServiceToggleEditor.cs.meta +11 -0
  212. package/Editor/Editor/View/KitSettingsTab/HelpboxAGConnectFile.cs +24 -0
  213. package/Editor/Editor/View/KitSettingsTab/HelpboxAGConnectFile.cs.meta +11 -0
  214. package/Editor/Editor/View/KitSettingsTab/IAPToggleEditor.cs +76 -0
  215. package/Editor/Editor/View/KitSettingsTab/IAPToggleEditor.cs.meta +11 -0
  216. package/Editor/Editor/View/KitSettingsTab/LocationToogleEditor.cs +66 -0
  217. package/Editor/Editor/View/KitSettingsTab/LocationToogleEditor.cs.meta +11 -0
  218. package/Editor/Editor/View/KitSettingsTab/MLKitToggleEditor.cs +87 -0
  219. package/Editor/Editor/View/KitSettingsTab/MLKitToggleEditor.cs.meta +11 -0
  220. package/Editor/Editor/View/KitSettingsTab/Modeling3dKitToggleEditor.cs +75 -0
  221. package/Editor/Editor/View/KitSettingsTab/Modeling3dKitToggleEditor.cs.meta +11 -0
  222. package/Editor/Editor/View/KitSettingsTab/NearbyServiceToggleEditor.cs +56 -0
  223. package/Editor/Editor/View/KitSettingsTab/NearbyServiceToggleEditor.cs.meta +11 -0
  224. package/Editor/Editor/View/KitSettingsTab/PluginToggleEditor.cs +58 -0
  225. package/Editor/Editor/View/KitSettingsTab/PluginToggleEditor.cs.meta +11 -0
  226. package/Editor/Editor/View/KitSettingsTab/PushToggleEditor.cs +71 -0
  227. package/Editor/Editor/View/KitSettingsTab/PushToggleEditor.cs.meta +11 -0
  228. package/Editor/Editor/View/KitSettingsTab/RemoteConfigToggleEditor.cs +80 -0
  229. package/Editor/Editor/View/KitSettingsTab/RemoteConfigToggleEditor.cs.meta +11 -0
  230. package/Editor/Editor/View/KitSettingsTab/ScanKitToggleEditor.cs +59 -0
  231. package/Editor/Editor/View/KitSettingsTab/ScanKitToggleEditor.cs.meta +11 -0
  232. package/Editor/Editor/View/KitSettingsTab/ToggleEditor.cs +12 -0
  233. package/Editor/Editor/View/KitSettingsTab/ToggleEditor.cs.meta +11 -0
  234. package/Editor/Editor/View/KitSettingsTab.meta +8 -0
  235. package/Editor/Editor/View/LibrariesTab/HMSLibrariesDrawer.cs +65 -0
  236. package/Editor/Editor/View/LibrariesTab/HMSLibrariesDrawer.cs.meta +11 -0
  237. package/Editor/Editor/View/LibrariesTab.meta +8 -0
  238. package/Editor/Editor/View/MLKitTab/HMSMLKitSettingsDrawer.cs +145 -0
  239. package/Editor/Editor/View/MLKitTab/HMSMLKitSettingsDrawer.cs.meta +11 -0
  240. package/Editor/Editor/View/MLKitTab/HMSMLKitTabFactory.cs +15 -0
  241. package/Editor/Editor/View/MLKitTab/HMSMLKitTabFactory.cs.meta +11 -0
  242. package/Editor/Editor/View/MLKitTab.meta +8 -0
  243. package/Editor/Editor/View/MainWindow/HMSMainKitsTabFactory.cs +136 -0
  244. package/Editor/Editor/View/MainWindow/HMSMainKitsTabFactory.cs.meta +11 -0
  245. package/Editor/Editor/View/MainWindow/HMSMainWindow.cs +60 -0
  246. package/Editor/Editor/View/MainWindow/HMSMainWindow.cs.meta +11 -0
  247. package/Editor/Editor/View/MainWindow.meta +8 -0
  248. package/Editor/Editor/View/ModelingTab/ModelingSettingsDrawer.cs +43 -0
  249. package/Editor/Editor/View/ModelingTab/ModelingSettingsDrawer.cs.meta +11 -0
  250. package/Editor/Editor/View/ModelingTab/ModelingTabFactory.cs +12 -0
  251. package/Editor/Editor/View/ModelingTab/ModelingTabFactory.cs.meta +11 -0
  252. package/Editor/Editor/View/ModelingTab.meta +8 -0
  253. package/Editor/Editor/View/PMSWindow/AllIAPProductsWindow/AllIAPProductsEditor.cs +192 -0
  254. package/Editor/Editor/View/PMSWindow/AllIAPProductsWindow/AllIAPProductsEditor.cs.meta +11 -0
  255. package/Editor/Editor/View/PMSWindow/AllIAPProductsWindow/HMSAllIAPProductsWindow.cs +34 -0
  256. package/Editor/Editor/View/PMSWindow/AllIAPProductsWindow/HMSAllIAPProductsWindow.cs.meta +11 -0
  257. package/Editor/Editor/View/PMSWindow/AllIAPProductsWindow/IAPQueryListEditor.cs +41 -0
  258. package/Editor/Editor/View/PMSWindow/AllIAPProductsWindow/IAPQueryListEditor.cs.meta +11 -0
  259. package/Editor/Editor/View/PMSWindow/AllIAPProductsWindow/UpdateIAPProductWindow/HMSUpdateIAPProductWindow.cs +24 -0
  260. package/Editor/Editor/View/PMSWindow/AllIAPProductsWindow/UpdateIAPProductWindow/HMSUpdateIAPProductWindow.cs.meta +11 -0
  261. package/Editor/Editor/View/PMSWindow/AllIAPProductsWindow/UpdateIAPProductWindow/UpdateIAPProductEditor.cs +269 -0
  262. package/Editor/Editor/View/PMSWindow/AllIAPProductsWindow/UpdateIAPProductWindow/UpdateIAPProductEditor.cs.meta +11 -0
  263. package/Editor/Editor/View/PMSWindow/AllIAPProductsWindow/UpdateIAPProductWindow.meta +8 -0
  264. package/Editor/Editor/View/PMSWindow/AllIAPProductsWindow.meta +8 -0
  265. package/Editor/Editor/View/PMSWindow/CreateAProductWindow/CreateProductEditor.cs +452 -0
  266. package/Editor/Editor/View/PMSWindow/CreateAProductWindow/CreateProductEditor.cs.meta +11 -0
  267. package/Editor/Editor/View/PMSWindow/CreateAProductWindow/HMSCreateAProductWindow.cs +34 -0
  268. package/Editor/Editor/View/PMSWindow/CreateAProductWindow/HMSCreateAProductWindow.cs.meta +11 -0
  269. package/Editor/Editor/View/PMSWindow/CreateAProductWindow/LanguagesFoldoutEditor.cs +96 -0
  270. package/Editor/Editor/View/PMSWindow/CreateAProductWindow/LanguagesFoldoutEditor.cs.meta +11 -0
  271. package/Editor/Editor/View/PMSWindow/CreateAProductWindow.meta +8 -0
  272. package/Editor/Editor/View/PMSWindow/CreateProductsWindow/CreateProductsEditor.cs +322 -0
  273. package/Editor/Editor/View/PMSWindow/CreateProductsWindow/CreateProductsEditor.cs.meta +11 -0
  274. package/Editor/Editor/View/PMSWindow/CreateProductsWindow/HMSCSVReader.cs +53 -0
  275. package/Editor/Editor/View/PMSWindow/CreateProductsWindow/HMSCSVReader.cs.meta +11 -0
  276. package/Editor/Editor/View/PMSWindow/CreateProductsWindow/HMSCreateProductsWindow.cs +34 -0
  277. package/Editor/Editor/View/PMSWindow/CreateProductsWindow/HMSCreateProductsWindow.cs.meta +11 -0
  278. package/Editor/Editor/View/PMSWindow/CreateProductsWindow.meta +8 -0
  279. package/Editor/Editor/View/PMSWindow/HMSPMSAPITabFactory.cs +40 -0
  280. package/Editor/Editor/View/PMSWindow/HMSPMSAPITabFactory.cs.meta +11 -0
  281. package/Editor/Editor/View/PMSWindow.meta +8 -0
  282. package/Editor/Editor/View/PublishingAPI/HMSPublishingAPITabFactory.cs +15 -0
  283. package/Editor/Editor/View/PublishingAPI/HMSPublishingAPITabFactory.cs.meta +11 -0
  284. package/Editor/Editor/View/PublishingAPI/QueryingAppInformation/HelpBoxEnablingAppSigning.cs +22 -0
  285. package/Editor/Editor/View/PublishingAPI/QueryingAppInformation/HelpBoxEnablingAppSigning.cs.meta +11 -0
  286. package/Editor/Editor/View/PublishingAPI/QueryingAppInformation/QueryingAppInfoEditor.cs +546 -0
  287. package/Editor/Editor/View/PublishingAPI/QueryingAppInformation/QueryingAppInfoEditor.cs.meta +11 -0
  288. package/Editor/Editor/View/PublishingAPI/QueryingAppInformation/QueryingAppInfoWindow.cs +32 -0
  289. package/Editor/Editor/View/PublishingAPI/QueryingAppInformation/QueryingAppInfoWindow.cs.meta +11 -0
  290. package/Editor/Editor/View/PublishingAPI/QueryingAppInformation.meta +8 -0
  291. package/Editor/Editor/View/PublishingAPI.meta +8 -0
  292. package/Editor/Editor/View/RemoteConfigTab/DefaultValueManipulator.cs +115 -0
  293. package/Editor/Editor/View/RemoteConfigTab/DefaultValueManipulator.cs.meta +11 -0
  294. package/Editor/Editor/View/RemoteConfigTab/HMSRemoteConfigAdderDrawer.cs +33 -0
  295. package/Editor/Editor/View/RemoteConfigTab/HMSRemoteConfigAdderDrawer.cs.meta +11 -0
  296. package/Editor/Editor/View/RemoteConfigTab/HMSRemoteConfigSettingsDrawer.cs +103 -0
  297. package/Editor/Editor/View/RemoteConfigTab/HMSRemoteConfigSettingsDrawer.cs.meta +11 -0
  298. package/Editor/Editor/View/RemoteConfigTab/HMSRemoteConfigTabFactory.cs +14 -0
  299. package/Editor/Editor/View/RemoteConfigTab/HMSRemoteConfigTabFactory.cs.meta +11 -0
  300. package/Editor/Editor/View/RemoteConfigTab.meta +8 -0
  301. package/Editor/Editor/View/Utils/CompilationWindow.cs +46 -0
  302. package/Editor/Editor/View/Utils/CompilationWindow.cs.meta +11 -0
  303. package/Editor/Editor/View/Utils/ICollectionManipulator.cs +9 -0
  304. package/Editor/Editor/View/Utils/ICollectionManipulator.cs.meta +11 -0
  305. package/Editor/Editor/View/Utils/WindowEditRedirect.cs +18 -0
  306. package/Editor/Editor/View/Utils/WindowEditRedirect.cs.meta +11 -0
  307. package/Editor/Editor/View/Utils.meta +8 -0
  308. package/Editor/Editor/View.meta +8 -0
  309. package/Editor/Editor.meta +8 -0
  310. package/Editor.meta +8 -0
  311. package/LICENSE.md +9 -0
  312. package/LICENSE.md.meta +7 -0
  313. package/ReadMe.md +2 -0
  314. package/ReadMe.md.meta +7 -0
  315. package/Runtime/Demos/APM/APMDemo.unity +2375 -0
  316. package/Runtime/Demos/APM/APMDemo.unity.meta +7 -0
  317. package/Runtime/Demos/APM/APMDemoManager.cs +105 -0
  318. package/Runtime/Demos/APM/APMDemoManager.cs.meta +11 -0
  319. package/Runtime/Demos/APM/APMDemoUIView.cs +76 -0
  320. package/Runtime/Demos/APM/APMDemoUIView.cs.meta +11 -0
  321. package/Runtime/Demos/APM.meta +8 -0
  322. package/Runtime/Demos/Account/AccountDemo.unity +1255 -0
  323. package/Runtime/Demos/Account/AccountDemo.unity.meta +7 -0
  324. package/Runtime/Demos/Account/AccountDemoManager.cs +79 -0
  325. package/Runtime/Demos/Account/AccountDemoManager.cs.meta +11 -0
  326. package/Runtime/Demos/Account/AccountUIView.cs +72 -0
  327. package/Runtime/Demos/Account/AccountUIView.cs.meta +11 -0
  328. package/Runtime/Demos/Account.meta +8 -0
  329. package/Runtime/Demos/Ads/AdsDemo.unity +2332 -0
  330. package/Runtime/Demos/Ads/AdsDemo.unity.meta +7 -0
  331. package/Runtime/Demos/Ads/AdsDemoManager.cs +257 -0
  332. package/Runtime/Demos/Ads/AdsDemoManager.cs.meta +11 -0
  333. package/Runtime/Demos/Ads/AdsUIView.cs +87 -0
  334. package/Runtime/Demos/Ads/AdsUIView.cs.meta +11 -0
  335. package/Runtime/Demos/Ads/InstallReferrer/Demo.unity +344 -0
  336. package/Runtime/Demos/Ads/InstallReferrer/Demo.unity.meta +7 -0
  337. package/Runtime/Demos/Ads/InstallReferrer/InstallReferrerDemo.cs +55 -0
  338. package/Runtime/Demos/Ads/InstallReferrer/InstallReferrerDemo.cs.meta +11 -0
  339. package/Runtime/Demos/Ads/InstallReferrer.meta +8 -0
  340. package/Runtime/Demos/Ads.meta +8 -0
  341. package/Runtime/Demos/Analytics/AnalyticsDemo.unity +1918 -0
  342. package/Runtime/Demos/Analytics/AnalyticsDemo.unity.meta +11 -0
  343. package/Runtime/Demos/Analytics/AnalyticsDemoManager.cs +46 -0
  344. package/Runtime/Demos/Analytics/AnalyticsDemoManager.cs.meta +11 -0
  345. package/Runtime/Demos/Analytics/AnalyticsUIView.cs +49 -0
  346. package/Runtime/Demos/Analytics/AnalyticsUIView.cs.meta +11 -0
  347. package/Runtime/Demos/Analytics.meta +8 -0
  348. package/Runtime/Demos/AppLinking/AppLinkingDemo.cs +144 -0
  349. package/Runtime/Demos/AppLinking/AppLinkingDemo.cs.meta +11 -0
  350. package/Runtime/Demos/AppLinking/AppLinkingDemo.unity +1709 -0
  351. package/Runtime/Demos/AppLinking/AppLinkingDemo.unity.meta +7 -0
  352. package/Runtime/Demos/AppLinking/AppLinkingUIView.cs +108 -0
  353. package/Runtime/Demos/AppLinking/AppLinkingUIView.cs.meta +11 -0
  354. package/Runtime/Demos/AppLinking.meta +8 -0
  355. package/Runtime/Demos/AppMessaging/AppMessaging.unity +541 -0
  356. package/Runtime/Demos/AppMessaging/AppMessaging.unity.meta +7 -0
  357. package/Runtime/Demos/AppMessaging/AppMessagingDemoManager.cs +28 -0
  358. package/Runtime/Demos/AppMessaging/AppMessagingDemoManager.cs.meta +11 -0
  359. package/Runtime/Demos/AppMessaging.meta +8 -0
  360. package/Runtime/Demos/AuthService/AuthServiceDemo.cs +204 -0
  361. package/Runtime/Demos/AuthService/AuthServiceDemo.cs.meta +11 -0
  362. package/Runtime/Demos/AuthService/AuthServiceDemo.unity +5006 -0
  363. package/Runtime/Demos/AuthService/AuthServiceDemo.unity.meta +7 -0
  364. package/Runtime/Demos/AuthService.meta +8 -0
  365. package/Runtime/Demos/CloudDB/CloudDBDemo.cs +348 -0
  366. package/Runtime/Demos/CloudDB/CloudDBDemo.cs.meta +11 -0
  367. package/Runtime/Demos/CloudDB/CloudDBDemo.unity +3420 -0
  368. package/Runtime/Demos/CloudDB/CloudDBDemo.unity.meta +7 -0
  369. package/Runtime/Demos/CloudDB/CloudDBDemoUIView.cs +180 -0
  370. package/Runtime/Demos/CloudDB/CloudDBDemoUIView.cs.meta +11 -0
  371. package/Runtime/Demos/CloudDB.meta +8 -0
  372. package/Runtime/Demos/CloudStorage/CloudStorageDemo.cs +201 -0
  373. package/Runtime/Demos/CloudStorage/CloudStorageDemo.cs.meta +11 -0
  374. package/Runtime/Demos/CloudStorage/CloudStorageDemo.unity +2074 -0
  375. package/Runtime/Demos/CloudStorage/CloudStorageDemo.unity.meta +7 -0
  376. package/Runtime/Demos/CloudStorage.meta +8 -0
  377. package/Runtime/Demos/CrashKit/CrashDemo.unity +1455 -0
  378. package/Runtime/Demos/CrashKit/CrashDemo.unity.meta +7 -0
  379. package/Runtime/Demos/CrashKit/CrashDemoManager.cs +50 -0
  380. package/Runtime/Demos/CrashKit/CrashDemoManager.cs.meta +11 -0
  381. package/Runtime/Demos/CrashKit/CrashDemoView.cs +64 -0
  382. package/Runtime/Demos/CrashKit/CrashDemoView.cs.meta +11 -0
  383. package/Runtime/Demos/CrashKit.meta +8 -0
  384. package/Runtime/Demos/DriveKit/DriveDemoManager.cs +135 -0
  385. package/Runtime/Demos/DriveKit/DriveDemoManager.cs.meta +11 -0
  386. package/Runtime/Demos/DriveKit/DriveDemoView.cs +90 -0
  387. package/Runtime/Demos/DriveKit/DriveDemoView.cs.meta +11 -0
  388. package/Runtime/Demos/DriveKit/DriveKitDemo.unity +1791 -0
  389. package/Runtime/Demos/DriveKit/DriveKitDemo.unity.meta +7 -0
  390. package/Runtime/Demos/DriveKit.meta +8 -0
  391. package/Runtime/Demos/Game/GameAddictionPreventionDemo/GameAddictionPreventionDemo.unity +813 -0
  392. package/Runtime/Demos/Game/GameAddictionPreventionDemo/GameAddictionPreventionDemo.unity.meta +7 -0
  393. package/Runtime/Demos/Game/GameAddictionPreventionDemo/GameAddictionPreventionDemoManager.cs +127 -0
  394. package/Runtime/Demos/Game/GameAddictionPreventionDemo/GameAddictionPreventionDemoManager.cs.meta +11 -0
  395. package/Runtime/Demos/Game/GameAddictionPreventionDemo.meta +8 -0
  396. package/Runtime/Demos/Game/GameDemo.unity +3107 -0
  397. package/Runtime/Demos/Game/GameDemo.unity.meta +7 -0
  398. package/Runtime/Demos/Game/GameDemoManager.cs +347 -0
  399. package/Runtime/Demos/Game/GameDemoManager.cs.meta +11 -0
  400. package/Runtime/Demos/Game/GameDemoUIView.cs +92 -0
  401. package/Runtime/Demos/Game/GameDemoUIView.cs.meta +11 -0
  402. package/Runtime/Demos/Game.meta +8 -0
  403. package/Runtime/Demos/IAP/IAPDemoUIView.cs +114 -0
  404. package/Runtime/Demos/IAP/IAPDemoUIView.cs.meta +11 -0
  405. package/Runtime/Demos/IAP/IapDemo.unity +4418 -0
  406. package/Runtime/Demos/IAP/IapDemo.unity.meta +7 -0
  407. package/Runtime/Demos/IAP/IapDemoManager.cs +157 -0
  408. package/Runtime/Demos/IAP/IapDemoManager.cs.meta +11 -0
  409. package/Runtime/Demos/IAP/Second Demo-Menu_Store/MainMenuManager.cs +200 -0
  410. package/Runtime/Demos/IAP/Second Demo-Menu_Store/MainMenuManager.cs.meta +11 -0
  411. package/Runtime/Demos/IAP/Second Demo-Menu_Store/Scene0_MainMenu.unity +2109 -0
  412. package/Runtime/Demos/IAP/Second Demo-Menu_Store/Scene0_MainMenu.unity.meta +7 -0
  413. package/Runtime/Demos/IAP/Second Demo-Menu_Store/Scene1_Store.unity +6210 -0
  414. package/Runtime/Demos/IAP/Second Demo-Menu_Store/Scene1_Store.unity.meta +7 -0
  415. package/Runtime/Demos/IAP/Second Demo-Menu_Store/StoreManager.cs +145 -0
  416. package/Runtime/Demos/IAP/Second Demo-Menu_Store/StoreManager.cs.meta +11 -0
  417. package/Runtime/Demos/IAP/Second Demo-Menu_Store.meta +8 -0
  418. package/Runtime/Demos/IAP/UnityDemo/UnityIAPDemoUIView.cs +96 -0
  419. package/Runtime/Demos/IAP/UnityDemo/UnityIAPDemoUIView.cs.meta +11 -0
  420. package/Runtime/Demos/IAP/UnityDemo/UnityIapDemo.unity +3930 -0
  421. package/Runtime/Demos/IAP/UnityDemo/UnityIapDemo.unity.meta +7 -0
  422. package/Runtime/Demos/IAP/UnityDemo/UnityIapDemoManager.cs +151 -0
  423. package/Runtime/Demos/IAP/UnityDemo/UnityIapDemoManager.cs.meta +11 -0
  424. package/Runtime/Demos/IAP/UnityDemo.meta +8 -0
  425. package/Runtime/Demos/IAP.meta +8 -0
  426. package/Runtime/Demos/InAppComment/InAppCommentDemo.cs +71 -0
  427. package/Runtime/Demos/InAppComment/InAppCommentDemo.cs.meta +11 -0
  428. package/Runtime/Demos/InAppComment/InAppCommentDemo.unity +759 -0
  429. package/Runtime/Demos/InAppComment/InAppCommentDemo.unity.meta +7 -0
  430. package/Runtime/Demos/InAppComment.meta +8 -0
  431. package/Runtime/Demos/Location/ActivityIdentificationDemo.cs +209 -0
  432. package/Runtime/Demos/Location/ActivityIdentificationDemo.cs.meta +11 -0
  433. package/Runtime/Demos/Location/FusedLocationDemo.cs +154 -0
  434. package/Runtime/Demos/Location/FusedLocationDemo.cs.meta +11 -0
  435. package/Runtime/Demos/Location/GeocodingDemo.cs +94 -0
  436. package/Runtime/Demos/Location/GeocodingDemo.cs.meta +11 -0
  437. package/Runtime/Demos/Location/GeofenceDemo.cs +180 -0
  438. package/Runtime/Demos/Location/GeofenceDemo.cs.meta +11 -0
  439. package/Runtime/Demos/Location/LocationDemo.unity +5912 -0
  440. package/Runtime/Demos/Location/LocationDemo.unity.meta +7 -0
  441. package/Runtime/Demos/Location/LocationDemoManager.cs +49 -0
  442. package/Runtime/Demos/Location/LocationDemoManager.cs.meta +11 -0
  443. package/Runtime/Demos/Location.meta +8 -0
  444. package/Runtime/Demos/ML/LanguageDetection/LanguageDetectionDemoManager.cs +199 -0
  445. package/Runtime/Demos/ML/LanguageDetection/LanguageDetectionDemoManager.cs.meta +11 -0
  446. package/Runtime/Demos/ML/LanguageDetection/LanguageDetectionManager.unity +2097 -0
  447. package/Runtime/Demos/ML/LanguageDetection/LanguageDetectionManager.unity.meta +7 -0
  448. package/Runtime/Demos/ML/LanguageDetection.meta +8 -0
  449. package/Runtime/Demos/ML/MLKitDemo.unity +20214 -0
  450. package/Runtime/Demos/ML/MLKitDemo.unity.meta +7 -0
  451. package/Runtime/Demos/ML/MlKitDemoManager.cs +89 -0
  452. package/Runtime/Demos/ML/MlKitDemoManager.cs.meta +11 -0
  453. package/Runtime/Demos/ML/TextRecognition/TextRecognition.unity +3948 -0
  454. package/Runtime/Demos/ML/TextRecognition/TextRecognition.unity.meta +7 -0
  455. package/Runtime/Demos/ML/TextRecognition/TextRecognitionDemoManager.cs +200 -0
  456. package/Runtime/Demos/ML/TextRecognition/TextRecognitionDemoManager.cs.meta +11 -0
  457. package/Runtime/Demos/ML/TextRecognition.meta +8 -0
  458. package/Runtime/Demos/ML/TextToSpeechDemo/TextToSpeechDemo.unity +7398 -0
  459. package/Runtime/Demos/ML/TextToSpeechDemo/TextToSpeechDemo.unity.meta +7 -0
  460. package/Runtime/Demos/ML/TextToSpeechDemo/TextToSpeechDemoManager.cs +209 -0
  461. package/Runtime/Demos/ML/TextToSpeechDemo/TextToSpeechDemoManager.cs.meta +11 -0
  462. package/Runtime/Demos/ML/TextToSpeechDemo.meta +8 -0
  463. package/Runtime/Demos/ML/Translate/TranslateDemo.unity +5231 -0
  464. package/Runtime/Demos/ML/Translate/TranslateDemo.unity.meta +7 -0
  465. package/Runtime/Demos/ML/Translate/TranslateDemoManager.cs +275 -0
  466. package/Runtime/Demos/ML/Translate/TranslateDemoManager.cs.meta +11 -0
  467. package/Runtime/Demos/ML/Translate.meta +8 -0
  468. package/Runtime/Demos/ML.meta +8 -0
  469. package/Runtime/Demos/Modeling3D/Modeling3dDemo.unity +4130 -0
  470. package/Runtime/Demos/Modeling3D/Modeling3dDemo.unity.meta +7 -0
  471. package/Runtime/Demos/Modeling3D/Modeling3dDemoManager.cs +382 -0
  472. package/Runtime/Demos/Modeling3D/Modeling3dDemoManager.cs.meta +11 -0
  473. package/Runtime/Demos/Modeling3D/Modeling3dMeterialDemo.unity +1788 -0
  474. package/Runtime/Demos/Modeling3D/Modeling3dMeterialDemo.unity.meta +7 -0
  475. package/Runtime/Demos/Modeling3D/Modeling3dMeterialDemoManager.cs +157 -0
  476. package/Runtime/Demos/Modeling3D/Modeling3dMeterialDemoManager.cs.meta +11 -0
  477. package/Runtime/Demos/Modeling3D/ProgressBar.cs +36 -0
  478. package/Runtime/Demos/Modeling3D/ProgressBar.cs.meta +11 -0
  479. package/Runtime/Demos/Modeling3D/TaskListDisplay.cs +101 -0
  480. package/Runtime/Demos/Modeling3D/TaskListDisplay.cs.meta +11 -0
  481. package/Runtime/Demos/Modeling3D.meta +8 -0
  482. package/Runtime/Demos/NearbyService/Nearby.unity +1563 -0
  483. package/Runtime/Demos/NearbyService/Nearby.unity.meta +7 -0
  484. package/Runtime/Demos/NearbyService/NearbyDemoManager.cs +192 -0
  485. package/Runtime/Demos/NearbyService/NearbyDemoManager.cs.meta +11 -0
  486. package/Runtime/Demos/NearbyService/NearbyDemoUIView.cs +73 -0
  487. package/Runtime/Demos/NearbyService/NearbyDemoUIView.cs.meta +11 -0
  488. package/Runtime/Demos/NearbyService.meta +8 -0
  489. package/Runtime/Demos/Push/PushDemo.unity +720 -0
  490. package/Runtime/Demos/Push/PushDemo.unity.meta +7 -0
  491. package/Runtime/Demos/Push/PushDemoManager.cs +123 -0
  492. package/Runtime/Demos/Push/PushDemoManager.cs.meta +11 -0
  493. package/Runtime/Demos/Push.meta +8 -0
  494. package/Runtime/Demos/RemoteConfig/RemoteConfigDemo.cs +120 -0
  495. package/Runtime/Demos/RemoteConfig/RemoteConfigDemo.cs.meta +11 -0
  496. package/Runtime/Demos/RemoteConfig/RemoteConfigDemo.unity +2259 -0
  497. package/Runtime/Demos/RemoteConfig/RemoteConfigDemo.unity.meta +7 -0
  498. package/Runtime/Demos/RemoteConfig/RemoteConfigUIView.cs +109 -0
  499. package/Runtime/Demos/RemoteConfig/RemoteConfigUIView.cs.meta +11 -0
  500. package/Runtime/Demos/RemoteConfig.meta +8 -0
  501. package/Runtime/Demos/Scan/ScanKitDemo.cs +69 -0
  502. package/Runtime/Demos/Scan/ScanKitDemo.cs.meta +11 -0
  503. package/Runtime/Demos/Scan/ScanKitDemo.unity +803 -0
  504. package/Runtime/Demos/Scan/ScanKitDemo.unity.meta +7 -0
  505. package/Runtime/Demos/Scan/ScanKitUIView.cs +38 -0
  506. package/Runtime/Demos/Scan/ScanKitUIView.cs.meta +11 -0
  507. package/Runtime/Demos/Scan.meta +8 -0
  508. package/Runtime/Demos.meta +8 -0
  509. package/Runtime/Dlls/EPPlus.dll +0 -0
  510. package/Runtime/Dlls/EPPlus.dll.meta +69 -0
  511. package/Runtime/Dlls/HuaweiMobileServices.dll +0 -0
  512. package/Runtime/Dlls/HuaweiMobileServices.dll.meta +38 -0
  513. package/Runtime/Dlls/HuaweiMobileServices.pdb +0 -0
  514. package/Runtime/Dlls/HuaweiMobileServices.pdb.meta +7 -0
  515. package/Runtime/Dlls/link.xml +5 -0
  516. package/Runtime/Dlls/link.xml.meta +7 -0
  517. package/Runtime/Dlls.meta +8 -0
  518. package/Runtime/HuaweiMobileServices.Core.asmdef +16 -0
  519. package/Runtime/HuaweiMobileServices.Core.asmdef.meta +7 -0
  520. package/Runtime/Plugins/Android/BookInfo.java +100 -0
  521. package/Runtime/Plugins/Android/BookInfo.java.meta +32 -0
  522. package/Runtime/Plugins/Android/HMSUnityPushKit.plugin/AndroidManifest.xml +13 -0
  523. package/Runtime/Plugins/Android/HMSUnityPushKit.plugin/build.gradle +31 -0
  524. package/Runtime/Plugins/Android/HMSUnityPushKit.plugin/project.properties +2 -0
  525. package/Runtime/Plugins/Android/HMSUnityPushKit.plugin.meta +80 -0
  526. package/Runtime/Plugins/Android/ObjectTypeInfoHelper.java +33 -0
  527. package/Runtime/Plugins/Android/ObjectTypeInfoHelper.java.meta +32 -0
  528. package/Runtime/Plugins/Android/app-debug.aar +0 -0
  529. package/Runtime/Plugins/Android/app-debug.aar.meta +32 -0
  530. package/Runtime/Plugins/Android/hmsLauncherTemplate.gradle +32 -0
  531. package/Runtime/Plugins/Android/hmsLauncherTemplate.gradle.meta +7 -0
  532. package/Runtime/Plugins/Android/hmsMainTemplate.gradle +13 -0
  533. package/Runtime/Plugins/Android/hmsMainTemplate.gradle.meta +7 -0
  534. package/Runtime/Plugins/Android.meta +8 -0
  535. package/Runtime/Plugins.meta +8 -0
  536. package/Runtime/Prefabs/HuaweiIDButton.prefab +355 -0
  537. package/Runtime/Prefabs/HuaweiIDButton.prefab.meta +7 -0
  538. package/Runtime/Prefabs/HuaweiIDCircleButton.prefab +274 -0
  539. package/Runtime/Prefabs/HuaweiIDCircleButton.prefab.meta +7 -0
  540. package/Runtime/Prefabs/Modeling3DTaskListItem.prefab +1881 -0
  541. package/Runtime/Prefabs/Modeling3DTaskListItem.prefab.meta +7 -0
  542. package/Runtime/Prefabs/SplashAdPreview.prefab +591 -0
  543. package/Runtime/Prefabs/SplashAdPreview.prefab.meta +7 -0
  544. package/Runtime/Prefabs/native_large_image.prefab +1172 -0
  545. package/Runtime/Prefabs/native_large_image.prefab.meta +7 -0
  546. package/Runtime/Prefabs.meta +8 -0
  547. package/Runtime/Resources/Huawei/CircleCorner.png +0 -0
  548. package/Runtime/Resources/Huawei/CircleCorner.png.meta +135 -0
  549. package/Runtime/Resources/Huawei/Huawei-White.png +0 -0
  550. package/Runtime/Resources/Huawei/Huawei-White.png.meta +135 -0
  551. package/Runtime/Resources/Huawei/RoundedCorner.png +0 -0
  552. package/Runtime/Resources/Huawei/RoundedCorner.png.meta +135 -0
  553. package/Runtime/Resources/Huawei.meta +8 -0
  554. package/Runtime/Resources/close.png +0 -0
  555. package/Runtime/Resources/close.png.meta +116 -0
  556. package/Runtime/Resources/coins100.png +0 -0
  557. package/Runtime/Resources/coins100.png.meta +121 -0
  558. package/Runtime/Resources/coins1000.png +0 -0
  559. package/Runtime/Resources/coins1000.png.meta +121 -0
  560. package/Runtime/Resources/info.png +0 -0
  561. package/Runtime/Resources/info.png.meta +116 -0
  562. package/Runtime/Resources/no_ads.png +0 -0
  563. package/Runtime/Resources/no_ads.png.meta +135 -0
  564. package/Runtime/Resources/premium.png +0 -0
  565. package/Runtime/Resources/premium.png.meta +135 -0
  566. package/Runtime/Resources/xml/remoteConfig.xml +5 -0
  567. package/Runtime/Resources/xml/remoteConfig.xml.meta +7 -0
  568. package/Runtime/Resources/xml.meta +8 -0
  569. package/Runtime/Resources.meta +8 -0
  570. package/Runtime/Scripts/APM/HMSAPMManager.cs +31 -0
  571. package/Runtime/Scripts/APM/HMSAPMManager.cs.meta +11 -0
  572. package/Runtime/Scripts/APM.meta +8 -0
  573. package/Runtime/Scripts/Account/HMSAccountKitManager.cs +194 -0
  574. package/Runtime/Scripts/Account/HMSAccountKitManager.cs.meta +11 -0
  575. package/Runtime/Scripts/Account.meta +8 -0
  576. package/Runtime/Scripts/Ads/HMSAdsKitManager.cs +977 -0
  577. package/Runtime/Scripts/Ads/HMSAdsKitManager.cs.meta +11 -0
  578. package/Runtime/Scripts/Ads/LargeImageNative.cs +166 -0
  579. package/Runtime/Scripts/Ads/LargeImageNative.cs.meta +11 -0
  580. package/Runtime/Scripts/Ads.meta +8 -0
  581. package/Runtime/Scripts/Analytics/HMSAnalyticsKitManager.cs +98 -0
  582. package/Runtime/Scripts/Analytics/HMSAnalyticsKitManager.cs.meta +11 -0
  583. package/Runtime/Scripts/Analytics.meta +8 -0
  584. package/Runtime/Scripts/AppMessaging/HMSAppMessagingManager.cs +60 -0
  585. package/Runtime/Scripts/AppMessaging/HMSAppMessagingManager.cs.meta +11 -0
  586. package/Runtime/Scripts/AppMessaging.meta +8 -0
  587. package/Runtime/Scripts/AuthService/HMSAuthServiceManager.cs +142 -0
  588. package/Runtime/Scripts/AuthService/HMSAuthServiceManager.cs.meta +11 -0
  589. package/Runtime/Scripts/AuthService.meta +8 -0
  590. package/Runtime/Scripts/CloudDB/BookInfo.cs +58 -0
  591. package/Runtime/Scripts/CloudDB/BookInfo.cs.meta +11 -0
  592. package/Runtime/Scripts/CloudDB/HMSCloudDBManager.cs +343 -0
  593. package/Runtime/Scripts/CloudDB/HMSCloudDBManager.cs.meta +11 -0
  594. package/Runtime/Scripts/CloudDB.meta +8 -0
  595. package/Runtime/Scripts/CloudStorage/HMSCloudStorageManager.cs +349 -0
  596. package/Runtime/Scripts/CloudStorage/HMSCloudStorageManager.cs.meta +11 -0
  597. package/Runtime/Scripts/CloudStorage.meta +8 -0
  598. package/Runtime/Scripts/Crash/HMSCrashManager.cs +61 -0
  599. package/Runtime/Scripts/Crash/HMSCrashManager.cs.meta +11 -0
  600. package/Runtime/Scripts/Crash.meta +8 -0
  601. package/Runtime/Scripts/Drive/CredentialManager.cs +55 -0
  602. package/Runtime/Scripts/Drive/CredentialManager.cs.meta +11 -0
  603. package/Runtime/Scripts/Drive/HMSDriveKitManager.cs +248 -0
  604. package/Runtime/Scripts/Drive/HMSDriveKitManager.cs.meta +11 -0
  605. package/Runtime/Scripts/Drive.meta +8 -0
  606. package/Runtime/Scripts/Game/HMSAchievementsEntry.cs +14 -0
  607. package/Runtime/Scripts/Game/HMSAchievementsEntry.cs.meta +11 -0
  608. package/Runtime/Scripts/Game/HMSAchievementsManager.cs +147 -0
  609. package/Runtime/Scripts/Game/HMSAchievementsManager.cs.meta +11 -0
  610. package/Runtime/Scripts/Game/HMSGameServiceManager.cs +314 -0
  611. package/Runtime/Scripts/Game/HMSGameServiceManager.cs.meta +11 -0
  612. package/Runtime/Scripts/Game/HMSLeaderboardEntry.cs +14 -0
  613. package/Runtime/Scripts/Game/HMSLeaderboardEntry.cs.meta +11 -0
  614. package/Runtime/Scripts/Game/HMSLeaderboardManager.cs +272 -0
  615. package/Runtime/Scripts/Game/HMSLeaderboardManager.cs.meta +11 -0
  616. package/Runtime/Scripts/Game/HMSSaveGameManager.cs +236 -0
  617. package/Runtime/Scripts/Game/HMSSaveGameManager.cs.meta +11 -0
  618. package/Runtime/Scripts/Game.meta +8 -0
  619. package/Runtime/Scripts/IAP/HMSIAPManager.cs +715 -0
  620. package/Runtime/Scripts/IAP/HMSIAPManager.cs.meta +11 -0
  621. package/Runtime/Scripts/IAP/HMSIAPProductType.cs +21 -0
  622. package/Runtime/Scripts/IAP/HMSIAPProductType.cs.meta +11 -0
  623. package/Runtime/Scripts/IAP/UnityPurchase/HuaweiPurchasingModule.cs +28 -0
  624. package/Runtime/Scripts/IAP/UnityPurchase/HuaweiPurchasingModule.cs.meta +11 -0
  625. package/Runtime/Scripts/IAP/UnityPurchase/HuaweiStore.cs +305 -0
  626. package/Runtime/Scripts/IAP/UnityPurchase/HuaweiStore.cs.meta +11 -0
  627. package/Runtime/Scripts/IAP/UnityPurchase.meta +8 -0
  628. package/Runtime/Scripts/IAP.meta +8 -0
  629. package/Runtime/Scripts/Location/GeofenceReceiver.cs +29 -0
  630. package/Runtime/Scripts/Location/GeofenceReceiver.cs.meta +11 -0
  631. package/Runtime/Scripts/Location/HMSLocationManager.cs +96 -0
  632. package/Runtime/Scripts/Location/HMSLocationManager.cs.meta +11 -0
  633. package/Runtime/Scripts/Location/LocationReceiver.cs +40 -0
  634. package/Runtime/Scripts/Location/LocationReceiver.cs.meta +11 -0
  635. package/Runtime/Scripts/Location.meta +8 -0
  636. package/Runtime/Scripts/ML/LangDetector/HMSMLLanguageDetectionManager.cs +180 -0
  637. package/Runtime/Scripts/ML/LangDetector/HMSMLLanguageDetectionManager.cs.meta +11 -0
  638. package/Runtime/Scripts/ML/LangDetector.meta +8 -0
  639. package/Runtime/Scripts/ML/MLDownloadListenerManager.cs +17 -0
  640. package/Runtime/Scripts/ML/MLDownloadListenerManager.cs.meta +11 -0
  641. package/Runtime/Scripts/ML/TextRecognition/HMSMLTextRecognitionKitManager.cs +163 -0
  642. package/Runtime/Scripts/ML/TextRecognition/HMSMLTextRecognitionKitManager.cs.meta +11 -0
  643. package/Runtime/Scripts/ML/TextRecognition.meta +8 -0
  644. package/Runtime/Scripts/ML/TextToSpeech/HMSMLTextToSpeechKitManager.cs +276 -0
  645. package/Runtime/Scripts/ML/TextToSpeech/HMSMLTextToSpeechKitManager.cs.meta +11 -0
  646. package/Runtime/Scripts/ML/TextToSpeech/MLTextToSpeechListenerManager.cs +94 -0
  647. package/Runtime/Scripts/ML/TextToSpeech/MLTextToSpeechListenerManager.cs.meta +11 -0
  648. package/Runtime/Scripts/ML/TextToSpeech.meta +8 -0
  649. package/Runtime/Scripts/ML/Translate/HMSMLTranslateKitManager.cs +203 -0
  650. package/Runtime/Scripts/ML/Translate/HMSMLTranslateKitManager.cs.meta +11 -0
  651. package/Runtime/Scripts/ML/Translate.meta +8 -0
  652. package/Runtime/Scripts/ML.meta +8 -0
  653. package/Runtime/Scripts/Modeling3D/HMSModeling3dKitManager.cs +557 -0
  654. package/Runtime/Scripts/Modeling3D/HMSModeling3dKitManager.cs.meta +11 -0
  655. package/Runtime/Scripts/Modeling3D/Modeling3dDTO.cs +38 -0
  656. package/Runtime/Scripts/Modeling3D/Modeling3dDTO.cs.meta +11 -0
  657. package/Runtime/Scripts/Modeling3D/Modeling3dListenerManager.cs +172 -0
  658. package/Runtime/Scripts/Modeling3D/Modeling3dListenerManager.cs.meta +11 -0
  659. package/Runtime/Scripts/Modeling3D.meta +8 -0
  660. package/Runtime/Scripts/NearbyService/HMSNearbyServiceManager.cs +80 -0
  661. package/Runtime/Scripts/NearbyService/HMSNearbyServiceManager.cs.meta +11 -0
  662. package/Runtime/Scripts/NearbyService.meta +8 -0
  663. package/Runtime/Scripts/Push/HMSPushKitManager.cs +134 -0
  664. package/Runtime/Scripts/Push/HMSPushKitManager.cs.meta +11 -0
  665. package/Runtime/Scripts/Push.meta +8 -0
  666. package/Runtime/Scripts/RemoteConfig/HMSRemoteConfigManager.cs +157 -0
  667. package/Runtime/Scripts/RemoteConfig/HMSRemoteConfigManager.cs.meta +11 -0
  668. package/Runtime/Scripts/RemoteConfig.meta +8 -0
  669. package/Runtime/Scripts/Scan/HMSScanKitManager.cs +60 -0
  670. package/Runtime/Scripts/Scan/HMSScanKitManager.cs.meta +11 -0
  671. package/Runtime/Scripts/Scan.meta +8 -0
  672. package/Runtime/Scripts/Settings/HMSAchievementsSettings.cs +37 -0
  673. package/Runtime/Scripts/Settings/HMSAchievementsSettings.cs.meta +11 -0
  674. package/Runtime/Scripts/Settings/HMSAdsKitSettings.cs +56 -0
  675. package/Runtime/Scripts/Settings/HMSAdsKitSettings.cs.meta +11 -0
  676. package/Runtime/Scripts/Settings/HMSConnectAPISettings.cs +44 -0
  677. package/Runtime/Scripts/Settings/HMSConnectAPISettings.cs.meta +11 -0
  678. package/Runtime/Scripts/Settings/HMSGameServiceSettings.cs +40 -0
  679. package/Runtime/Scripts/Settings/HMSGameServiceSettings.cs.meta +11 -0
  680. package/Runtime/Scripts/Settings/HMSIAPKitSettings.cs +37 -0
  681. package/Runtime/Scripts/Settings/HMSIAPKitSettings.cs.meta +11 -0
  682. package/Runtime/Scripts/Settings/HMSIAPProductListSettings.cs +74 -0
  683. package/Runtime/Scripts/Settings/HMSIAPProductListSettings.cs.meta +11 -0
  684. package/Runtime/Scripts/Settings/HMSLeaderboardSettings.cs +37 -0
  685. package/Runtime/Scripts/Settings/HMSLeaderboardSettings.cs.meta +11 -0
  686. package/Runtime/Scripts/Settings/HMSMLKitSettings.cs +42 -0
  687. package/Runtime/Scripts/Settings/HMSMLKitSettings.cs.meta +11 -0
  688. package/Runtime/Scripts/Settings/HMSMainEditorSettings.cs +38 -0
  689. package/Runtime/Scripts/Settings/HMSMainEditorSettings.cs.meta +11 -0
  690. package/Runtime/Scripts/Settings/HMSModelingKitSettings.cs +38 -0
  691. package/Runtime/Scripts/Settings/HMSModelingKitSettings.cs.meta +11 -0
  692. package/Runtime/Scripts/Settings/HMSPluginSettings.cs +37 -0
  693. package/Runtime/Scripts/Settings/HMSPluginSettings.cs.meta +11 -0
  694. package/Runtime/Scripts/Settings/HMSRemoteConfigSettings.cs +40 -0
  695. package/Runtime/Scripts/Settings/HMSRemoteConfigSettings.cs.meta +11 -0
  696. package/Runtime/Scripts/Settings/HMSRemoteDefaultValueSettings.cs +53 -0
  697. package/Runtime/Scripts/Settings/HMSRemoteDefaultValueSettings.cs.meta +11 -0
  698. package/Runtime/Scripts/Settings/Settings.cs +75 -0
  699. package/Runtime/Scripts/Settings/Settings.cs.meta +11 -0
  700. package/Runtime/Scripts/Settings/SettingsScriptableObject.cs +14 -0
  701. package/Runtime/Scripts/Settings/SettingsScriptableObject.cs.meta +11 -0
  702. package/Runtime/Scripts/Settings.meta +8 -0
  703. package/Runtime/Scripts/Utils/HMSExceptionHandler.cs +120 -0
  704. package/Runtime/Scripts/Utils/HMSExceptionHandler.cs.meta +11 -0
  705. package/Runtime/Scripts/Utils/HMSManagerStart.cs +36 -0
  706. package/Runtime/Scripts/Utils/HMSManagerStart.cs.meta +11 -0
  707. package/Runtime/Scripts/Utils/HMSSafeArea.cs +63 -0
  708. package/Runtime/Scripts/Utils/HMSSafeArea.cs.meta +11 -0
  709. package/Runtime/Scripts/Utils/HMSSingleton.cs +56 -0
  710. package/Runtime/Scripts/Utils/HMSSingleton.cs.meta +11 -0
  711. package/Runtime/Scripts/Utils/HMSSplashAdPreview.cs +37 -0
  712. package/Runtime/Scripts/Utils/HMSSplashAdPreview.cs.meta +11 -0
  713. package/Runtime/Scripts/Utils/HuaweiConstants.cs +204 -0
  714. package/Runtime/Scripts/Utils/HuaweiConstants.cs.meta +11 -0
  715. package/Runtime/Scripts/Utils/JsonHelper.cs +23 -0
  716. package/Runtime/Scripts/Utils/JsonHelper.cs.meta +11 -0
  717. package/Runtime/Scripts/Utils/PlayerPrefsJsonDatabase.cs +130 -0
  718. package/Runtime/Scripts/Utils/PlayerPrefsJsonDatabase.cs.meta +11 -0
  719. package/Runtime/Scripts/Utils/ScriptableHelper.cs +58 -0
  720. package/Runtime/Scripts/Utils/ScriptableHelper.cs.meta +11 -0
  721. package/Runtime/Scripts/Utils/SerializableDictionary.cs +129 -0
  722. package/Runtime/Scripts/Utils/SerializableDictionary.cs.meta +11 -0
  723. package/Runtime/Scripts/Utils.meta +8 -0
  724. package/Runtime/Scripts.meta +8 -0
  725. package/Runtime/Settings/Resources.meta +8 -0
  726. package/Runtime/Settings.meta +8 -0
  727. package/Runtime/VERSION +1 -0
  728. package/Runtime/VERSION.meta +7 -0
  729. package/Runtime.meta +8 -0
  730. package/package.json +13 -0
  731. package/package.json.meta +7 -0
@@ -0,0 +1,7 @@
1
+ fileFormatVersion: 2
2
+ guid: f8445fc6c93392243b755736a2718e3b
3
+ DefaultImporter:
4
+ externalObjects: {}
5
+ userData:
6
+ assetBundleName:
7
+ assetBundleVariant:
@@ -0,0 +1,108 @@
1
+ using UnityEngine;
2
+ using UnityEngine.UI;
3
+
4
+ public class AppLinkingUIView : MonoBehaviour
5
+ {
6
+
7
+ private Button Btn_CreateAppLinking;
8
+ private Button Btn_ShareLongAppLinking;
9
+ private Button Btn_ShareShortAppLinking;
10
+ private Button Btn_GetDeepLink;
11
+
12
+ private Text Txt_LongAppLink;
13
+ private Text Txt_ShortAppLink;
14
+ private Text Txt_DeepLink;
15
+
16
+ #region Monobehaviour
17
+
18
+ private void Awake()
19
+ {
20
+ Btn_CreateAppLinking = GameObject.Find("CreateAppLinking").GetComponent<Button>();
21
+ Btn_ShareLongAppLinking = GameObject.Find("ShareLongAppLinking").GetComponent<Button>();
22
+ Btn_ShareShortAppLinking = GameObject.Find("ShareShortAppLinking").GetComponent<Button>();
23
+ Btn_GetDeepLink = GameObject.Find("GetDeepLink").GetComponent<Button>();
24
+
25
+ Txt_LongAppLink = GameObject.Find("LongAppLinkText").GetComponent<Text>();
26
+ Txt_ShortAppLink = GameObject.Find("ShortAppLinkText").GetComponent<Text>();
27
+ Txt_DeepLink = GameObject.Find("DeepLinkText").GetComponent<Text>();
28
+
29
+ }
30
+
31
+
32
+
33
+ private void OnEnable()
34
+ {
35
+ Btn_CreateAppLinking.onClick.AddListener(ButtonClick_CreateAppLinking);
36
+ Btn_ShareLongAppLinking.onClick.AddListener(ButtonClick_ShareLongAppLinking);
37
+ Btn_ShareShortAppLinking.onClick.AddListener(ButtonClick_ShareShortAppLinking);
38
+ Btn_GetDeepLink.onClick.AddListener(ButtonClick_GetDeepLink);
39
+
40
+ AppLinkingDemo.longLinkText += OnLongLinkText;
41
+ AppLinkingDemo.shortLinkText += OnShortLinkText;
42
+ AppLinkingDemo.deepLinkText += OnDeepLinkText;
43
+ }
44
+
45
+ private void OnDisable()
46
+ {
47
+ Btn_CreateAppLinking.onClick.RemoveListener(ButtonClick_CreateAppLinking);
48
+ Btn_ShareLongAppLinking.onClick.RemoveListener(ButtonClick_ShareLongAppLinking);
49
+ Btn_ShareShortAppLinking.onClick.RemoveListener(ButtonClick_ShareShortAppLinking);
50
+ Btn_GetDeepLink.onClick.RemoveListener(ButtonClick_GetDeepLink);
51
+
52
+ AppLinkingDemo.longLinkText -= OnLongLinkText;
53
+ AppLinkingDemo.shortLinkText -= OnShortLinkText;
54
+ AppLinkingDemo.deepLinkText -= OnDeepLinkText;
55
+ }
56
+
57
+ #endregion
58
+
59
+
60
+
61
+ #region Callbacks
62
+
63
+ private void OnLongLinkText(string log)
64
+ {
65
+ Txt_LongAppLink.text = log;
66
+ }
67
+
68
+ private void OnShortLinkText(string log)
69
+ {
70
+ Txt_ShortAppLink.text = log;
71
+ }
72
+
73
+ private void OnDeepLinkText(string log)
74
+ {
75
+ Txt_DeepLink.text = log;
76
+ }
77
+
78
+ #endregion
79
+
80
+
81
+
82
+ #region Button Events
83
+
84
+ private void ButtonClick_CreateAppLinking()
85
+ {
86
+ AppLinkingDemo.Instance.CreateAppLinking();
87
+ }
88
+
89
+ private void ButtonClick_ShareLongAppLinking()
90
+ {
91
+ AppLinkingDemo.Instance.ShareLongLink();
92
+ }
93
+
94
+ private void ButtonClick_ShareShortAppLinking()
95
+ {
96
+ AppLinkingDemo.Instance.ShareShortLink();
97
+ }
98
+
99
+ private void ButtonClick_GetDeepLink()
100
+ {
101
+ AppLinkingDemo.Instance.GetLink();
102
+ }
103
+
104
+ #endregion
105
+
106
+ }
107
+
108
+
@@ -0,0 +1,11 @@
1
+ fileFormatVersion: 2
2
+ guid: 7379d0b1d74705a45b5508d0215027f7
3
+ MonoImporter:
4
+ externalObjects: {}
5
+ serializedVersion: 2
6
+ defaultReferences: []
7
+ executionOrder: 0
8
+ icon: {instanceID: 0}
9
+ userData:
10
+ assetBundleName:
11
+ assetBundleVariant:
@@ -0,0 +1,8 @@
1
+ fileFormatVersion: 2
2
+ guid: 5188021e78fe34b499059ecc328ed8df
3
+ folderAsset: yes
4
+ DefaultImporter:
5
+ externalObjects: {}
6
+ userData:
7
+ assetBundleName:
8
+ assetBundleVariant:
@@ -0,0 +1,541 @@
1
+ %YAML 1.1
2
+ %TAG !u! tag:unity3d.com,2011:
3
+ --- !u!29 &1
4
+ OcclusionCullingSettings:
5
+ m_ObjectHideFlags: 0
6
+ serializedVersion: 2
7
+ m_OcclusionBakeSettings:
8
+ smallestOccluder: 5
9
+ smallestHole: 0.25
10
+ backfaceThreshold: 100
11
+ m_SceneGUID: 00000000000000000000000000000000
12
+ m_OcclusionCullingData: {fileID: 0}
13
+ --- !u!104 &2
14
+ RenderSettings:
15
+ m_ObjectHideFlags: 0
16
+ serializedVersion: 9
17
+ m_Fog: 0
18
+ m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
19
+ m_FogMode: 3
20
+ m_FogDensity: 0.01
21
+ m_LinearFogStart: 0
22
+ m_LinearFogEnd: 300
23
+ m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1}
24
+ m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1}
25
+ m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1}
26
+ m_AmbientIntensity: 1
27
+ m_AmbientMode: 3
28
+ m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1}
29
+ m_SkyboxMaterial: {fileID: 0}
30
+ m_HaloStrength: 0.5
31
+ m_FlareStrength: 1
32
+ m_FlareFadeSpeed: 3
33
+ m_HaloTexture: {fileID: 0}
34
+ m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0}
35
+ m_DefaultReflectionMode: 0
36
+ m_DefaultReflectionResolution: 128
37
+ m_ReflectionBounces: 1
38
+ m_ReflectionIntensity: 1
39
+ m_CustomReflection: {fileID: 0}
40
+ m_Sun: {fileID: 0}
41
+ m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1}
42
+ m_UseRadianceAmbientProbe: 0
43
+ --- !u!157 &3
44
+ LightmapSettings:
45
+ m_ObjectHideFlags: 0
46
+ serializedVersion: 11
47
+ m_GIWorkflowMode: 1
48
+ m_GISettings:
49
+ serializedVersion: 2
50
+ m_BounceScale: 1
51
+ m_IndirectOutputScale: 1
52
+ m_AlbedoBoost: 1
53
+ m_EnvironmentLightingMode: 0
54
+ m_EnableBakedLightmaps: 0
55
+ m_EnableRealtimeLightmaps: 0
56
+ m_LightmapEditorSettings:
57
+ serializedVersion: 12
58
+ m_Resolution: 2
59
+ m_BakeResolution: 40
60
+ m_AtlasSize: 1024
61
+ m_AO: 0
62
+ m_AOMaxDistance: 1
63
+ m_CompAOExponent: 1
64
+ m_CompAOExponentDirect: 0
65
+ m_ExtractAmbientOcclusion: 0
66
+ m_Padding: 2
67
+ m_LightmapParameters: {fileID: 0}
68
+ m_LightmapsBakeMode: 1
69
+ m_TextureCompression: 1
70
+ m_FinalGather: 0
71
+ m_FinalGatherFiltering: 1
72
+ m_FinalGatherRayCount: 256
73
+ m_ReflectionCompression: 2
74
+ m_MixedBakeMode: 2
75
+ m_BakeBackend: 1
76
+ m_PVRSampling: 1
77
+ m_PVRDirectSampleCount: 32
78
+ m_PVRSampleCount: 512
79
+ m_PVRBounces: 2
80
+ m_PVREnvironmentSampleCount: 256
81
+ m_PVREnvironmentReferencePointCount: 2048
82
+ m_PVRFilteringMode: 1
83
+ m_PVRDenoiserTypeDirect: 1
84
+ m_PVRDenoiserTypeIndirect: 1
85
+ m_PVRDenoiserTypeAO: 1
86
+ m_PVRFilterTypeDirect: 0
87
+ m_PVRFilterTypeIndirect: 0
88
+ m_PVRFilterTypeAO: 0
89
+ m_PVREnvironmentMIS: 1
90
+ m_PVRCulling: 1
91
+ m_PVRFilteringGaussRadiusDirect: 1
92
+ m_PVRFilteringGaussRadiusIndirect: 5
93
+ m_PVRFilteringGaussRadiusAO: 2
94
+ m_PVRFilteringAtrousPositionSigmaDirect: 0.5
95
+ m_PVRFilteringAtrousPositionSigmaIndirect: 2
96
+ m_PVRFilteringAtrousPositionSigmaAO: 1
97
+ m_ExportTrainingData: 0
98
+ m_TrainingDataDestination: TrainingData
99
+ m_LightProbeSampleCountMultiplier: 4
100
+ m_LightingDataAsset: {fileID: 0}
101
+ m_UseShadowmask: 1
102
+ --- !u!196 &4
103
+ NavMeshSettings:
104
+ serializedVersion: 2
105
+ m_ObjectHideFlags: 0
106
+ m_BuildSettings:
107
+ serializedVersion: 2
108
+ agentTypeID: 0
109
+ agentRadius: 0.5
110
+ agentHeight: 2
111
+ agentSlope: 45
112
+ agentClimb: 0.4
113
+ ledgeDropHeight: 0
114
+ maxJumpAcrossDistance: 0
115
+ minRegionArea: 2
116
+ manualCellSize: 0
117
+ cellSize: 0.16666667
118
+ manualTileSize: 0
119
+ tileSize: 256
120
+ accuratePlacement: 0
121
+ debug:
122
+ m_Flags: 0
123
+ m_NavMeshData: {fileID: 0}
124
+ --- !u!1 &175758700
125
+ GameObject:
126
+ m_ObjectHideFlags: 0
127
+ m_CorrespondingSourceObject: {fileID: 0}
128
+ m_PrefabInstance: {fileID: 0}
129
+ m_PrefabAsset: {fileID: 0}
130
+ serializedVersion: 6
131
+ m_Component:
132
+ - component: {fileID: 175758701}
133
+ - component: {fileID: 175758702}
134
+ m_Layer: 5
135
+ m_Name: SafeArea
136
+ m_TagString: Untagged
137
+ m_Icon: {fileID: 0}
138
+ m_NavMeshLayer: 0
139
+ m_StaticEditorFlags: 0
140
+ m_IsActive: 1
141
+ --- !u!224 &175758701
142
+ RectTransform:
143
+ m_ObjectHideFlags: 0
144
+ m_CorrespondingSourceObject: {fileID: 0}
145
+ m_PrefabInstance: {fileID: 0}
146
+ m_PrefabAsset: {fileID: 0}
147
+ m_GameObject: {fileID: 175758700}
148
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
149
+ m_LocalPosition: {x: 0, y: 0, z: 0}
150
+ m_LocalScale: {x: 1, y: 1, z: 1}
151
+ m_Children:
152
+ - {fileID: 320928975}
153
+ m_Father: {fileID: 1045178426}
154
+ m_RootOrder: 0
155
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
156
+ m_AnchorMin: {x: 0, y: 0}
157
+ m_AnchorMax: {x: 1, y: 1}
158
+ m_AnchoredPosition: {x: 0, y: 0}
159
+ m_SizeDelta: {x: 0, y: 0}
160
+ m_Pivot: {x: 0.5, y: 0.5}
161
+ --- !u!114 &175758702
162
+ MonoBehaviour:
163
+ m_ObjectHideFlags: 0
164
+ m_CorrespondingSourceObject: {fileID: 0}
165
+ m_PrefabInstance: {fileID: 0}
166
+ m_PrefabAsset: {fileID: 0}
167
+ m_GameObject: {fileID: 175758700}
168
+ m_Enabled: 1
169
+ m_EditorHideFlags: 0
170
+ m_Script: {fileID: 11500000, guid: 092a6f187080732499e3c707064c740a, type: 3}
171
+ m_Name:
172
+ m_EditorClassIdentifier:
173
+ --- !u!1 &320928974
174
+ GameObject:
175
+ m_ObjectHideFlags: 0
176
+ m_CorrespondingSourceObject: {fileID: 0}
177
+ m_PrefabInstance: {fileID: 0}
178
+ m_PrefabAsset: {fileID: 0}
179
+ serializedVersion: 6
180
+ m_Component:
181
+ - component: {fileID: 320928975}
182
+ - component: {fileID: 320928977}
183
+ - component: {fileID: 320928976}
184
+ m_Layer: 5
185
+ m_Name: test
186
+ m_TagString: Untagged
187
+ m_Icon: {fileID: 0}
188
+ m_NavMeshLayer: 0
189
+ m_StaticEditorFlags: 0
190
+ m_IsActive: 1
191
+ --- !u!224 &320928975
192
+ RectTransform:
193
+ m_ObjectHideFlags: 0
194
+ m_CorrespondingSourceObject: {fileID: 0}
195
+ m_PrefabInstance: {fileID: 0}
196
+ m_PrefabAsset: {fileID: 0}
197
+ m_GameObject: {fileID: 320928974}
198
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
199
+ m_LocalPosition: {x: 0, y: 0, z: 0}
200
+ m_LocalScale: {x: 3.8148, y: 3.8148, z: 3.8148}
201
+ m_Children: []
202
+ m_Father: {fileID: 175758701}
203
+ m_RootOrder: 0
204
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
205
+ m_AnchorMin: {x: 0.5, y: 0.5}
206
+ m_AnchorMax: {x: 0.5, y: 0.5}
207
+ m_AnchoredPosition: {x: -0.0000038146973, y: 466}
208
+ m_SizeDelta: {x: 222.76562, y: 32.85582}
209
+ m_Pivot: {x: 0.5, y: 0.5}
210
+ --- !u!114 &320928976
211
+ MonoBehaviour:
212
+ m_ObjectHideFlags: 0
213
+ m_CorrespondingSourceObject: {fileID: 0}
214
+ m_PrefabInstance: {fileID: 0}
215
+ m_PrefabAsset: {fileID: 0}
216
+ m_GameObject: {fileID: 320928974}
217
+ m_Enabled: 1
218
+ m_EditorHideFlags: 0
219
+ m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
220
+ m_Name:
221
+ m_EditorClassIdentifier:
222
+ m_Material: {fileID: 0}
223
+ m_Color: {r: 0.19607843, g: 0.5372549, b: 0.19607843, a: 1}
224
+ m_RaycastTarget: 1
225
+ m_Maskable: 1
226
+ m_OnCullStateChanged:
227
+ m_PersistentCalls:
228
+ m_Calls: []
229
+ m_FontData:
230
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
231
+ m_FontSize: 25
232
+ m_FontStyle: 0
233
+ m_BestFit: 1
234
+ m_MinSize: 1
235
+ m_MaxSize: 100
236
+ m_Alignment: 4
237
+ m_AlignByGeometry: 0
238
+ m_RichText: 1
239
+ m_HorizontalOverflow: 1
240
+ m_VerticalOverflow: 1
241
+ m_LineSpacing: 1
242
+ m_Text: App Messaging
243
+ --- !u!222 &320928977
244
+ CanvasRenderer:
245
+ m_ObjectHideFlags: 0
246
+ m_CorrespondingSourceObject: {fileID: 0}
247
+ m_PrefabInstance: {fileID: 0}
248
+ m_PrefabAsset: {fileID: 0}
249
+ m_GameObject: {fileID: 320928974}
250
+ m_CullTransparentMesh: 0
251
+ --- !u!1 &1045178422
252
+ GameObject:
253
+ m_ObjectHideFlags: 0
254
+ m_CorrespondingSourceObject: {fileID: 0}
255
+ m_PrefabInstance: {fileID: 0}
256
+ m_PrefabAsset: {fileID: 0}
257
+ serializedVersion: 6
258
+ m_Component:
259
+ - component: {fileID: 1045178426}
260
+ - component: {fileID: 1045178425}
261
+ - component: {fileID: 1045178424}
262
+ - component: {fileID: 1045178423}
263
+ m_Layer: 5
264
+ m_Name: Canvas
265
+ m_TagString: Untagged
266
+ m_Icon: {fileID: 0}
267
+ m_NavMeshLayer: 0
268
+ m_StaticEditorFlags: 0
269
+ m_IsActive: 1
270
+ --- !u!114 &1045178423
271
+ MonoBehaviour:
272
+ m_ObjectHideFlags: 0
273
+ m_CorrespondingSourceObject: {fileID: 0}
274
+ m_PrefabInstance: {fileID: 0}
275
+ m_PrefabAsset: {fileID: 0}
276
+ m_GameObject: {fileID: 1045178422}
277
+ m_Enabled: 1
278
+ m_EditorHideFlags: 0
279
+ m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3}
280
+ m_Name:
281
+ m_EditorClassIdentifier:
282
+ m_IgnoreReversedGraphics: 1
283
+ m_BlockingObjects: 0
284
+ m_BlockingMask:
285
+ serializedVersion: 2
286
+ m_Bits: 4294967295
287
+ --- !u!114 &1045178424
288
+ MonoBehaviour:
289
+ m_ObjectHideFlags: 0
290
+ m_CorrespondingSourceObject: {fileID: 0}
291
+ m_PrefabInstance: {fileID: 0}
292
+ m_PrefabAsset: {fileID: 0}
293
+ m_GameObject: {fileID: 1045178422}
294
+ m_Enabled: 1
295
+ m_EditorHideFlags: 0
296
+ m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3}
297
+ m_Name:
298
+ m_EditorClassIdentifier:
299
+ m_UiScaleMode: 1
300
+ m_ReferencePixelsPerUnit: 100
301
+ m_ScaleFactor: 1
302
+ m_ReferenceResolution: {x: 1080, y: 1920}
303
+ m_ScreenMatchMode: 0
304
+ m_MatchWidthOrHeight: 0.5
305
+ m_PhysicalUnit: 3
306
+ m_FallbackScreenDPI: 96
307
+ m_DefaultSpriteDPI: 96
308
+ m_DynamicPixelsPerUnit: 1
309
+ --- !u!223 &1045178425
310
+ Canvas:
311
+ m_ObjectHideFlags: 0
312
+ m_CorrespondingSourceObject: {fileID: 0}
313
+ m_PrefabInstance: {fileID: 0}
314
+ m_PrefabAsset: {fileID: 0}
315
+ m_GameObject: {fileID: 1045178422}
316
+ m_Enabled: 1
317
+ serializedVersion: 3
318
+ m_RenderMode: 0
319
+ m_Camera: {fileID: 0}
320
+ m_PlaneDistance: 100
321
+ m_PixelPerfect: 0
322
+ m_ReceivesEvents: 1
323
+ m_OverrideSorting: 0
324
+ m_OverridePixelPerfect: 0
325
+ m_SortingBucketNormalizedSize: 0
326
+ m_AdditionalShaderChannelsFlag: 0
327
+ m_SortingLayerID: 0
328
+ m_SortingOrder: 0
329
+ m_TargetDisplay: 0
330
+ --- !u!224 &1045178426
331
+ RectTransform:
332
+ m_ObjectHideFlags: 0
333
+ m_CorrespondingSourceObject: {fileID: 0}
334
+ m_PrefabInstance: {fileID: 0}
335
+ m_PrefabAsset: {fileID: 0}
336
+ m_GameObject: {fileID: 1045178422}
337
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
338
+ m_LocalPosition: {x: 0, y: 0, z: 0}
339
+ m_LocalScale: {x: 0, y: 0, z: 0}
340
+ m_Children:
341
+ - {fileID: 175758701}
342
+ m_Father: {fileID: 0}
343
+ m_RootOrder: 1
344
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
345
+ m_AnchorMin: {x: 0, y: 0}
346
+ m_AnchorMax: {x: 0, y: 0}
347
+ m_AnchoredPosition: {x: 0, y: 0}
348
+ m_SizeDelta: {x: 0, y: 0}
349
+ m_Pivot: {x: 0, y: 0}
350
+ --- !u!1 &1064933107
351
+ GameObject:
352
+ m_ObjectHideFlags: 0
353
+ m_CorrespondingSourceObject: {fileID: 0}
354
+ m_PrefabInstance: {fileID: 0}
355
+ m_PrefabAsset: {fileID: 0}
356
+ serializedVersion: 6
357
+ m_Component:
358
+ - component: {fileID: 1064933110}
359
+ - component: {fileID: 1064933109}
360
+ - component: {fileID: 1064933108}
361
+ m_Layer: 0
362
+ m_Name: Main Camera
363
+ m_TagString: MainCamera
364
+ m_Icon: {fileID: 0}
365
+ m_NavMeshLayer: 0
366
+ m_StaticEditorFlags: 0
367
+ m_IsActive: 1
368
+ --- !u!81 &1064933108
369
+ AudioListener:
370
+ m_ObjectHideFlags: 0
371
+ m_CorrespondingSourceObject: {fileID: 0}
372
+ m_PrefabInstance: {fileID: 0}
373
+ m_PrefabAsset: {fileID: 0}
374
+ m_GameObject: {fileID: 1064933107}
375
+ m_Enabled: 1
376
+ --- !u!20 &1064933109
377
+ Camera:
378
+ m_ObjectHideFlags: 0
379
+ m_CorrespondingSourceObject: {fileID: 0}
380
+ m_PrefabInstance: {fileID: 0}
381
+ m_PrefabAsset: {fileID: 0}
382
+ m_GameObject: {fileID: 1064933107}
383
+ m_Enabled: 1
384
+ serializedVersion: 2
385
+ m_ClearFlags: 1
386
+ m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0}
387
+ m_projectionMatrixMode: 1
388
+ m_GateFitMode: 2
389
+ m_FOVAxisMode: 0
390
+ m_SensorSize: {x: 36, y: 24}
391
+ m_LensShift: {x: 0, y: 0}
392
+ m_FocalLength: 50
393
+ m_NormalizedViewPortRect:
394
+ serializedVersion: 2
395
+ x: 0
396
+ y: 0
397
+ width: 1
398
+ height: 1
399
+ near clip plane: 0.3
400
+ far clip plane: 1000
401
+ field of view: 60
402
+ orthographic: 1
403
+ orthographic size: 5
404
+ m_Depth: -1
405
+ m_CullingMask:
406
+ serializedVersion: 2
407
+ m_Bits: 4294967295
408
+ m_RenderingPath: -1
409
+ m_TargetTexture: {fileID: 0}
410
+ m_TargetDisplay: 0
411
+ m_TargetEye: 3
412
+ m_HDR: 1
413
+ m_AllowMSAA: 1
414
+ m_AllowDynamicResolution: 0
415
+ m_ForceIntoRT: 0
416
+ m_OcclusionCulling: 1
417
+ m_StereoConvergence: 10
418
+ m_StereoSeparation: 0.022
419
+ --- !u!4 &1064933110
420
+ Transform:
421
+ m_ObjectHideFlags: 0
422
+ m_CorrespondingSourceObject: {fileID: 0}
423
+ m_PrefabInstance: {fileID: 0}
424
+ m_PrefabAsset: {fileID: 0}
425
+ m_GameObject: {fileID: 1064933107}
426
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
427
+ m_LocalPosition: {x: 0, y: 0, z: -10}
428
+ m_LocalScale: {x: 1, y: 1, z: 1}
429
+ m_Children: []
430
+ m_Father: {fileID: 0}
431
+ m_RootOrder: 0
432
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
433
+ --- !u!1 &1218658307
434
+ GameObject:
435
+ m_ObjectHideFlags: 0
436
+ m_CorrespondingSourceObject: {fileID: 0}
437
+ m_PrefabInstance: {fileID: 0}
438
+ m_PrefabAsset: {fileID: 0}
439
+ serializedVersion: 6
440
+ m_Component:
441
+ - component: {fileID: 1218658310}
442
+ - component: {fileID: 1218658309}
443
+ - component: {fileID: 1218658308}
444
+ m_Layer: 0
445
+ m_Name: EventSystem (1)
446
+ m_TagString: Untagged
447
+ m_Icon: {fileID: 0}
448
+ m_NavMeshLayer: 0
449
+ m_StaticEditorFlags: 0
450
+ m_IsActive: 1
451
+ --- !u!114 &1218658308
452
+ MonoBehaviour:
453
+ m_ObjectHideFlags: 0
454
+ m_CorrespondingSourceObject: {fileID: 0}
455
+ m_PrefabInstance: {fileID: 0}
456
+ m_PrefabAsset: {fileID: 0}
457
+ m_GameObject: {fileID: 1218658307}
458
+ m_Enabled: 1
459
+ m_EditorHideFlags: 0
460
+ m_Script: {fileID: 11500000, guid: 4f231c4fb786f3946a6b90b886c48677, type: 3}
461
+ m_Name:
462
+ m_EditorClassIdentifier:
463
+ m_HorizontalAxis: Horizontal
464
+ m_VerticalAxis: Vertical
465
+ m_SubmitButton: Submit
466
+ m_CancelButton: Cancel
467
+ m_InputActionsPerSecond: 10
468
+ m_RepeatDelay: 0.5
469
+ m_ForceModuleActive: 0
470
+ --- !u!114 &1218658309
471
+ MonoBehaviour:
472
+ m_ObjectHideFlags: 0
473
+ m_CorrespondingSourceObject: {fileID: 0}
474
+ m_PrefabInstance: {fileID: 0}
475
+ m_PrefabAsset: {fileID: 0}
476
+ m_GameObject: {fileID: 1218658307}
477
+ m_Enabled: 1
478
+ m_EditorHideFlags: 0
479
+ m_Script: {fileID: 11500000, guid: 76c392e42b5098c458856cdf6ecaaaa1, type: 3}
480
+ m_Name:
481
+ m_EditorClassIdentifier:
482
+ m_FirstSelected: {fileID: 0}
483
+ m_sendNavigationEvents: 1
484
+ m_DragThreshold: 10
485
+ --- !u!4 &1218658310
486
+ Transform:
487
+ m_ObjectHideFlags: 0
488
+ m_CorrespondingSourceObject: {fileID: 0}
489
+ m_PrefabInstance: {fileID: 0}
490
+ m_PrefabAsset: {fileID: 0}
491
+ m_GameObject: {fileID: 1218658307}
492
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
493
+ m_LocalPosition: {x: -4.5, y: -6.1, z: 0}
494
+ m_LocalScale: {x: 0.9493967, y: 0.9570438, z: 1}
495
+ m_Children: []
496
+ m_Father: {fileID: 0}
497
+ m_RootOrder: 2
498
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
499
+ --- !u!1 &1786950909
500
+ GameObject:
501
+ m_ObjectHideFlags: 0
502
+ m_CorrespondingSourceObject: {fileID: 0}
503
+ m_PrefabInstance: {fileID: 0}
504
+ m_PrefabAsset: {fileID: 0}
505
+ serializedVersion: 6
506
+ m_Component:
507
+ - component: {fileID: 1786950910}
508
+ - component: {fileID: 1786950911}
509
+ m_Layer: 0
510
+ m_Name: AppMessagingDemoManager
511
+ m_TagString: Untagged
512
+ m_Icon: {fileID: 0}
513
+ m_NavMeshLayer: 0
514
+ m_StaticEditorFlags: 0
515
+ m_IsActive: 1
516
+ --- !u!4 &1786950910
517
+ Transform:
518
+ m_ObjectHideFlags: 0
519
+ m_CorrespondingSourceObject: {fileID: 0}
520
+ m_PrefabInstance: {fileID: 0}
521
+ m_PrefabAsset: {fileID: 0}
522
+ m_GameObject: {fileID: 1786950909}
523
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
524
+ m_LocalPosition: {x: 459.5, y: 241.91858, z: 0}
525
+ m_LocalScale: {x: 1, y: 1, z: 1}
526
+ m_Children: []
527
+ m_Father: {fileID: 0}
528
+ m_RootOrder: 3
529
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
530
+ --- !u!114 &1786950911
531
+ MonoBehaviour:
532
+ m_ObjectHideFlags: 0
533
+ m_CorrespondingSourceObject: {fileID: 0}
534
+ m_PrefabInstance: {fileID: 0}
535
+ m_PrefabAsset: {fileID: 0}
536
+ m_GameObject: {fileID: 1786950909}
537
+ m_Enabled: 1
538
+ m_EditorHideFlags: 0
539
+ m_Script: {fileID: 11500000, guid: 1d8acd454bb15344baa25f2d4b8f9fd7, type: 3}
540
+ m_Name:
541
+ m_EditorClassIdentifier:
@@ -0,0 +1,7 @@
1
+ fileFormatVersion: 2
2
+ guid: b70b1e257227728448671deb901e680a
3
+ DefaultImporter:
4
+ externalObjects: {}
5
+ userData:
6
+ assetBundleName:
7
+ assetBundleVariant:
@@ -0,0 +1,28 @@
1
+ using HuaweiMobileServices.AppMessaging;
2
+ using UnityEngine;
3
+
4
+ public class AppMessagingDemoManager : MonoBehaviour
5
+ {
6
+ // Start is called before the first frame update
7
+ void Start()
8
+ {
9
+ AGConnectAppMessaging appMessaging = AGConnectAppMessaging.Instance;
10
+ appMessaging.AddOnClickListener(OnMessageClickFunction);
11
+ appMessaging.AddOnDisplayListener(OnMessageDisplayFunction);
12
+ appMessaging.AddOnDismissListener(OnMessageDissmissFunction);
13
+ }
14
+
15
+ private void OnMessageClickFunction(AppMessage obj)
16
+ {
17
+ Debug.Log("AppMessaging OnMessageClickFunction");
18
+ }
19
+ private void OnMessageDisplayFunction(AppMessage obj)
20
+ {
21
+ Debug.Log("AppMessaging OnMessageDisplayFunction" + obj.MessageType);
22
+ }
23
+
24
+ private void OnMessageDissmissFunction(AppMessage obj, DismissType dismissType)
25
+ {
26
+ Debug.Log("AppMessaging OnMessageDissmissFunction" + obj.MessageType);
27
+ }
28
+ }