플랫폼 사용 편의를 위한 헬퍼 기능들의 모음 More...
Classes | |
| class | PlatformHelper |
| 플랫폼에서 지원하는 기능을 제공하는 클래스이다. More... | |
| class | InAppBrowserParam |
| 인앱 브라우저 설정을 위한 파라미터 More... | |
| class | OpenBrowserParam |
| 외부 브라우저를 열기 위한 클래스 More... | |
| class | InAppWebViewParam |
| 인앱 웹뷰 설정을 위한 파라미터 More... | |
Typedefs | |
| typedef std::function< void(bool isSuccess)> | PlatformHelper::onHIVEPlatformHelperShareHandler |
| Share 관련 동작이 완료되었을 때 호출됨. More... | |
| typedef std::function< void(ResultAPI const &result, std::vector< std::string > const &granted, std::vector< std::string > const &denied)> | PlatformHelper::onRequestUserPermissionsHandler |
| Android에서 재요청된 OS 권한동의에 대한 결과 값을 반환한다. More... | |
Enumerations | |
| enum class | PlatformShareType { PlatformShareType::TEXT = 1 , PlatformShareType::MEDIA = 2 } |
| Types of Platform share. More... | |
| enum class | PlatformShareDataType { PlatformShareDataType::SUBJECT = 0 , PlatformShareDataType::TEXT , PlatformShareDataType::MEDIA } |
| Types of Platform share data. More... | |
Functions | |
| static void | PlatformHelper::requestUserPermissions (std::vector< std::string > requests, onRequestUserPermissionsHandler handler) |
| Android에서 사용자에게 OS 권한을 재요청. More... | |
| static void | PlatformHelper::openBrowser (const OpenBrowserParam param) |
| Opens an external browser. More... | |
플랫폼 사용 편의를 위한 헬퍼 기능들의 모음
| typedef std::function<void(bool isSuccess)> PlatformHelper::onHIVEPlatformHelperShareHandler |
Share 관련 동작이 완료되었을 때 호출됨.
(shareText, shareMedia)
| isSuccess | Share 결과. |
| typedef std::function<void(ResultAPI const & result, std::vector<std::string> const & granted, std::vector<std::string> const & denied)> PlatformHelper::onRequestUserPermissionsHandler |
Android에서 재요청된 OS 권한동의에 대한 결과 값을 반환한다.
| granted | 사용자가 수락한 권한 리스트, denied 사용자가 거부한 권한 리스트 |
|
strong |
|
strong |
|
static |
Opens an external browser.
| url | URL of the website to open |
| useIncognito | Whether to use incognito mode |
|
static |
Android에서 사용자에게 OS 권한을 재요청.
| requests | Android에서 요청할 권한들을 포함한 리스트. |