├── .clang-format ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .github ├── DISCUSSION_TEMPLATE │ └── feature-request.yml ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── bug_report.yml ├── PULL_REQUEST_TEMPLATE.md ├── actions │ └── setup │ │ └── action.yml └── workflows │ ├── ci.yml │ └── sponsors.yml ├── .gitignore ├── .husky └── _ │ ├── check │ ├── commit-msg │ ├── format │ ├── pre-commit │ └── prepare-commit-msg ├── .nvmrc ├── .prettierrc ├── .swiftformat ├── .watchmanconfig ├── .yarn └── plugins │ └── @yarnpkg │ ├── plugin-interactive-tools.cjs │ └── plugin-workspace-tools.cjs ├── .yarnrc.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs ├── .gitignore ├── README.md ├── babel.config.js ├── docs │ ├── advanced │ │ ├── _category_.json │ │ └── thread.mdx │ ├── channel │ │ ├── _category_.json │ │ ├── add-channel.mdx │ │ ├── chat-channel.mdx │ │ ├── faq.mdx │ │ ├── follow-channel.mdx │ │ ├── get-channels.mdx │ │ ├── intro-android.mdx │ │ ├── intro-expo.mdx │ │ ├── intro-ios.mdx │ │ └── intro.mdx │ ├── core │ │ ├── _category_.json │ │ ├── get-android-keyhash.mdx │ │ ├── initialize-sdk.mdx │ │ └── intro.mdx │ ├── error-handling.mdx │ ├── install-android.mdx │ ├── install-core.mdx │ ├── install-expo.mdx │ ├── install-ios.mdx │ ├── install-web.mdx │ ├── intro.mdx │ ├── navi │ │ ├── _category_.json │ │ ├── intro-expo.mdx │ │ ├── intro-ios.mdx │ │ ├── intro.mdx │ │ ├── navigate-destination.mdx │ │ └── share-destination.mdx │ ├── share │ │ ├── _category_.json │ │ ├── component-types.mdx │ │ ├── intro-android.mdx │ │ ├── intro-expo.mdx │ │ ├── intro-ios.mdx │ │ ├── intro.mdx │ │ ├── partial │ │ │ ├── _calendar.mdx │ │ │ ├── _commerce.mdx │ │ │ ├── _feed.mdx │ │ │ ├── _list.mdx │ │ │ ├── _location.mdx │ │ │ ├── _send_default_template.mdx │ │ │ ├── _share_default_template.mdx │ │ │ └── _text.mdx │ │ ├── send-custom.mdx │ │ ├── send-default-calendar.mdx │ │ ├── send-default-commerce.mdx │ │ ├── send-default-feed.mdx │ │ ├── send-default-list.mdx │ │ ├── send-default-location.mdx │ │ ├── send-default-text.mdx │ │ ├── share-custom.mdx │ │ ├── share-default-calendar.mdx │ │ ├── share-default-commerce.mdx │ │ ├── share-default-feed.mdx │ │ ├── share-default-list.mdx │ │ ├── share-default-location.mdx │ │ ├── share-default-text.mdx │ │ └── troubleshooting.mdx │ ├── social │ │ ├── _category_.json │ │ ├── get-friends.mdx │ │ ├── get-talk-profile.mdx │ │ ├── intro.mdx │ │ └── select-talk-friends.mdx │ └── user │ │ ├── _category_.json │ │ ├── access-token.mdx │ │ ├── intro-android.mdx │ │ ├── intro-expo.mdx │ │ ├── intro-ios.mdx │ │ ├── intro.mdx │ │ ├── login-web.mdx │ │ ├── login.mdx │ │ ├── profile.mdx │ │ ├── scope.mdx │ │ ├── service-terms.mdx │ │ └── shipping-address.mdx ├── docusaurus.config.ts ├── env.d.ts ├── i18n │ └── en │ │ ├── code.json │ │ ├── docusaurus-plugin-content-blog │ │ └── options.json │ │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── advanced │ │ │ ├── _category_.json │ │ │ └── thread.mdx │ │ │ ├── channel │ │ │ ├── _category_.json │ │ │ ├── add-channel.mdx │ │ │ ├── chat-channel.mdx │ │ │ ├── faq.mdx │ │ │ ├── follow-channel.mdx │ │ │ ├── get-channels.mdx │ │ │ ├── intro-android.mdx │ │ │ ├── intro-expo.mdx │ │ │ ├── intro-ios.mdx │ │ │ └── intro.mdx │ │ │ ├── core │ │ │ ├── _category_.json │ │ │ ├── get-android-keyhash.mdx │ │ │ ├── initialize-sdk.mdx │ │ │ └── intro.mdx │ │ │ ├── error-handling.mdx │ │ │ ├── install-android.mdx │ │ │ ├── install-core.mdx │ │ │ ├── install-expo.mdx │ │ │ ├── install-ios.mdx │ │ │ ├── install-web.mdx │ │ │ ├── intro.mdx │ │ │ ├── navi │ │ │ ├── _category_.json │ │ │ ├── intro-expo.mdx │ │ │ ├── intro-ios.mdx │ │ │ ├── intro.mdx │ │ │ ├── navigate-destination.mdx │ │ │ └── share-destination.mdx │ │ │ ├── share │ │ │ ├── _category_.json │ │ │ ├── component-types.mdx │ │ │ ├── intro-android.mdx │ │ │ ├── intro-expo.mdx │ │ │ ├── intro-ios.mdx │ │ │ ├── intro.mdx │ │ │ ├── partial │ │ │ │ ├── _calendar.mdx │ │ │ │ ├── _commerce.mdx │ │ │ │ ├── _feed.mdx │ │ │ │ ├── _list.mdx │ │ │ │ ├── _location.mdx │ │ │ │ ├── _send_default_template.mdx │ │ │ │ ├── _share_default_template.mdx │ │ │ │ └── _text.mdx │ │ │ ├── send-custom.mdx │ │ │ ├── send-default-calendar.mdx │ │ │ ├── send-default-commerce.mdx │ │ │ ├── send-default-feed.mdx │ │ │ ├── send-default-list.mdx │ │ │ ├── send-default-location.mdx │ │ │ ├── send-default-text.mdx │ │ │ ├── share-custom.mdx │ │ │ ├── share-default-calendar.mdx │ │ │ ├── share-default-commerce.mdx │ │ │ ├── share-default-feed.mdx │ │ │ ├── share-default-list.mdx │ │ │ ├── share-default-location.mdx │ │ │ ├── share-default-text.mdx │ │ │ └── troubleshooting.mdx │ │ │ ├── social │ │ │ ├── _category_.json │ │ │ ├── get-friends.mdx │ │ │ ├── get-talk-profile.mdx │ │ │ ├── intro.mdx │ │ │ └── select-talk-friends.mdx │ │ │ └── user │ │ │ ├── _category_.json │ │ │ ├── access-token.mdx │ │ │ ├── intro-android.mdx │ │ │ ├── intro-expo.mdx │ │ │ ├── intro-ios.mdx │ │ │ ├── intro.mdx │ │ │ ├── login-web.mdx │ │ │ ├── login.mdx │ │ │ ├── profile.mdx │ │ │ ├── scope.mdx │ │ │ ├── service-terms.mdx │ │ │ └── shipping-address.mdx │ │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── package.json ├── sidebars.ts ├── src │ ├── components │ │ └── HomepageFeatures │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ ├── css │ │ └── custom.css │ └── pages │ │ ├── index.module.scss │ │ ├── index.tsx │ │ └── markdown-page.md ├── static │ ├── .nojekyll │ ├── favicon.ico │ ├── img │ │ ├── ai-creativity.svg │ │ ├── building-community.svg │ │ ├── favicon.ico │ │ ├── favicon.png │ │ ├── finding-topics.svg │ │ ├── logo.png │ │ ├── logo.svg │ │ └── social-card.png │ └── robots.txt ├── tsconfig.json └── vercel.json ├── example ├── .gitignore ├── .watchmanconfig ├── Gemfile ├── Gemfile.lock ├── README.md ├── app.json ├── assets │ ├── favicon.png │ ├── icon.png │ └── splash.png ├── babel.config.js ├── metro.config.js ├── package.json ├── public │ └── index.html ├── react-native.config.js ├── src │ ├── app │ │ ├── _layout.tsx │ │ ├── channel.tsx │ │ ├── index.tsx │ │ ├── navi.tsx │ │ ├── share.tsx │ │ ├── social.tsx │ │ └── user.tsx │ ├── component │ │ ├── Box.tsx │ │ ├── Btn.tsx │ │ ├── PrettyResult.tsx │ │ ├── Row.tsx │ │ ├── StyledScrollView.tsx │ │ └── Txt.tsx │ ├── design │ │ ├── AppTheme.ts │ │ └── token │ │ │ ├── C.ts │ │ │ └── Sp.ts │ ├── root.js │ └── util │ │ └── px.ts └── tsconfig.json ├── lefthook.yml ├── lerna.json ├── package.json ├── packages ├── channel │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── RNCKakaoChannel.podspec │ ├── android │ │ ├── .editorconfig │ │ ├── build.gradle │ │ ├── gradle.properties │ │ └── src │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java │ │ │ │ └── net │ │ │ │ └── mjstudio │ │ │ │ └── rnkakao │ │ │ │ └── channel │ │ │ │ ├── RNCKakaoChannelModule.kt │ │ │ │ └── RNCKakaoChannelPackage.kt │ │ │ ├── newarch │ │ │ └── KakaoChannelSpec.kt │ │ │ └── oldarch │ │ │ └── KakaoChannelSpec.kt │ ├── ios │ │ ├── RNCKakaoChannel.h │ │ ├── RNCKakaoChannel.mm │ │ └── RNCKakaoChannelManager.swift │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── index.web.ts │ │ └── spec │ │ │ └── NativeKakaoChannel.ts │ ├── tsconfig.build.json │ └── tsconfig.json ├── core │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── RNCKakaoCore.podspec │ ├── android │ │ ├── .editorconfig │ │ ├── build.gradle │ │ ├── package-json.gradle │ │ └── src │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java │ │ │ │ └── net │ │ │ │ └── mjstudio │ │ │ │ └── rnkakao │ │ │ │ └── core │ │ │ │ ├── RNCKakaoCoreModule.kt │ │ │ │ ├── RNCKakaoCorePackage.kt │ │ │ │ └── util │ │ │ │ ├── DebugE.kt │ │ │ │ ├── RNCKakaoException.kt │ │ │ │ └── RNCKakaoUtil.kt │ │ │ ├── newarch │ │ │ └── KakaoCoreSpec.kt │ │ │ └── oldarch │ │ │ └── KakaoCoreSpec.kt │ ├── app.plugin.js │ ├── expo-config-plugin │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── type.ts │ │ │ ├── withAndroid.ts │ │ │ └── withIos.ts │ │ └── tsconfig.json │ ├── ios │ │ ├── RNCKakaoCore.h │ │ ├── RNCKakaoCore.mm │ │ ├── RNCKakaoCoreManager.swift │ │ └── Util │ │ │ ├── RNCKakaoError.swift │ │ │ ├── RNCkakaoUtil.swift │ │ │ └── debugE.swift │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── index.web.ts │ │ ├── spec │ │ │ └── NativeKakaoCore.ts │ │ └── util │ │ │ ├── kAssert.ts │ │ │ ├── kCreateWebError.ts │ │ │ ├── kFetch.ts │ │ │ ├── kGlobalStorage.ts │ │ │ └── kRunWebAPI.ts │ ├── tsconfig.build.json │ └── tsconfig.json ├── navi │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── RNCKakaoNavi.podspec │ ├── android │ │ ├── .editorconfig │ │ ├── build.gradle │ │ ├── gradle.properties │ │ └── src │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java │ │ │ │ └── net │ │ │ │ └── mjstudio │ │ │ │ └── rnkakao │ │ │ │ └── navi │ │ │ │ ├── RNCKakaoNaviModule.kt │ │ │ │ └── RNCKakaoNaviPackage.kt │ │ │ ├── newarch │ │ │ └── KakaoNaviSpec.kt │ │ │ └── oldarch │ │ │ └── KakaoNaviSpec.kt │ ├── ios │ │ ├── RNCKakaoNavi.h │ │ ├── RNCKakaoNavi.mm │ │ └── RNCKakaoNaviManager.swift │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── index.web.ts │ │ └── spec │ │ │ └── NativeKakaoNavi.ts │ ├── tsconfig.build.json │ └── tsconfig.json ├── share │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── RNCKakaoShare.podspec │ ├── android │ │ ├── .editorconfig │ │ ├── build.gradle │ │ ├── gradle.properties │ │ └── src │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java │ │ │ │ └── net │ │ │ │ └── mjstudio │ │ │ │ └── rnkakao │ │ │ │ └── share │ │ │ │ ├── RNCKakaoShareModule.kt │ │ │ │ ├── RNCKakaoSharePackage.kt │ │ │ │ └── RNCKakaoShareTemplates.kt │ │ │ ├── newarch │ │ │ └── KakaoShareSpec.kt │ │ │ └── oldarch │ │ │ └── KakaoShareSpec.kt │ ├── ios │ │ ├── RNCKakaoShare.h │ │ ├── RNCKakaoShare.mm │ │ └── RNCKakaoShareManager.swift │ ├── package.json │ ├── src │ │ ├── __tests__ │ │ │ └── index.test.tsx │ │ ├── index.ts │ │ ├── index.web.ts │ │ ├── spec │ │ │ └── NativeKakaoShare.ts │ │ └── util │ │ │ └── swapMobileExecutionParamsFieldValueIntoStringInIOS.ts │ ├── tsconfig.build.json │ └── tsconfig.json ├── social │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── RNCKakaoSocial.podspec │ ├── android │ │ ├── .editorconfig │ │ ├── build.gradle │ │ ├── gradle.properties │ │ └── src │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifestNew.xml │ │ │ └── java │ │ │ │ └── net │ │ │ │ └── mjstudio │ │ │ │ └── rnkakao │ │ │ │ └── social │ │ │ │ ├── RNCKakaoSocialModule.kt │ │ │ │ └── RNCKakaoSocialPackage.kt │ │ │ ├── newarch │ │ │ └── KakaoSocialSpec.kt │ │ │ └── oldarch │ │ │ └── KakaoSocialSpec.kt │ ├── ios │ │ ├── RNCKakaoSocial.h │ │ ├── RNCKakaoSocial.mm │ │ └── RNCKakaoSocialManager.swift │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── index.web.ts │ │ └── spec │ │ │ └── NativeKakaoSocial.ts │ ├── tsconfig.build.json │ └── tsconfig.json └── user │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── RNCKakaoUser.podspec │ ├── android │ ├── .editorconfig │ ├── build.gradle │ ├── gradle.properties │ └── src │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── AndroidManifestNew.xml │ │ └── java │ │ │ └── net │ │ │ └── mjstudio │ │ │ └── rnkakao │ │ │ └── user │ │ │ ├── RNCKakaoUserModule.kt │ │ │ └── RNCKakaoUserPackage.kt │ │ ├── newarch │ │ └── KakaoUserSpec.kt │ │ └── oldarch │ │ └── KakaoUserSpec.kt │ ├── ios │ ├── RNCKakaoUser.h │ ├── RNCKakaoUser.mm │ ├── RNCKakaoUserManager.swift │ ├── RNCKakaoUserUtil.h │ └── RNCKakaoUserUtil.mm │ ├── package.json │ ├── src │ ├── index.ts │ ├── index.web.ts │ └── spec │ │ └── NativeKakaoUser.ts │ ├── tsconfig.build.json │ └── tsconfig.json ├── script ├── arch-convert.sh ├── ci-android-build.sh ├── ci-ios-build.sh ├── clang-format.sh ├── clang-lint.sh ├── ktlint-format.sh ├── ktlint-lint.sh ├── publish.sh ├── remove-web-declaration-files.mjs ├── swift-format.sh ├── swift-lint.sh ├── version-prerelease.sh ├── version.sh └── web-module-path-util.mjs ├── tsconfig.json ├── turbo.json └── yarn.lock /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/DISCUSSION_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/.github/DISCUSSION_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [mym0404] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/sponsors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/.github/workflows/sponsors.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/_/check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/.husky/_/check -------------------------------------------------------------------------------- /.husky/_/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/.husky/_/commit-msg -------------------------------------------------------------------------------- /.husky/_/format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/.husky/_/format -------------------------------------------------------------------------------- /.husky/_/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/.husky/_/pre-commit -------------------------------------------------------------------------------- /.husky/_/prepare-commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/.husky/_/prepare-commit-msg -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v18 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/.prettierrc -------------------------------------------------------------------------------- /.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/.swiftformat -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/README.md -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/babel.config.js -------------------------------------------------------------------------------- /docs/docs/advanced/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/advanced/_category_.json -------------------------------------------------------------------------------- /docs/docs/advanced/thread.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/advanced/thread.mdx -------------------------------------------------------------------------------- /docs/docs/channel/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/channel/_category_.json -------------------------------------------------------------------------------- /docs/docs/channel/add-channel.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/channel/add-channel.mdx -------------------------------------------------------------------------------- /docs/docs/channel/chat-channel.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/channel/chat-channel.mdx -------------------------------------------------------------------------------- /docs/docs/channel/faq.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/channel/faq.mdx -------------------------------------------------------------------------------- /docs/docs/channel/follow-channel.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/channel/follow-channel.mdx -------------------------------------------------------------------------------- /docs/docs/channel/get-channels.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/channel/get-channels.mdx -------------------------------------------------------------------------------- /docs/docs/channel/intro-android.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/channel/intro-android.mdx -------------------------------------------------------------------------------- /docs/docs/channel/intro-expo.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/channel/intro-expo.mdx -------------------------------------------------------------------------------- /docs/docs/channel/intro-ios.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/channel/intro-ios.mdx -------------------------------------------------------------------------------- /docs/docs/channel/intro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/channel/intro.mdx -------------------------------------------------------------------------------- /docs/docs/core/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/core/_category_.json -------------------------------------------------------------------------------- /docs/docs/core/get-android-keyhash.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/core/get-android-keyhash.mdx -------------------------------------------------------------------------------- /docs/docs/core/initialize-sdk.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/core/initialize-sdk.mdx -------------------------------------------------------------------------------- /docs/docs/core/intro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/core/intro.mdx -------------------------------------------------------------------------------- /docs/docs/error-handling.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/error-handling.mdx -------------------------------------------------------------------------------- /docs/docs/install-android.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/install-android.mdx -------------------------------------------------------------------------------- /docs/docs/install-core.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/install-core.mdx -------------------------------------------------------------------------------- /docs/docs/install-expo.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/install-expo.mdx -------------------------------------------------------------------------------- /docs/docs/install-ios.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/install-ios.mdx -------------------------------------------------------------------------------- /docs/docs/install-web.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/install-web.mdx -------------------------------------------------------------------------------- /docs/docs/intro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/intro.mdx -------------------------------------------------------------------------------- /docs/docs/navi/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/navi/_category_.json -------------------------------------------------------------------------------- /docs/docs/navi/intro-expo.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/navi/intro-expo.mdx -------------------------------------------------------------------------------- /docs/docs/navi/intro-ios.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/navi/intro-ios.mdx -------------------------------------------------------------------------------- /docs/docs/navi/intro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/navi/intro.mdx -------------------------------------------------------------------------------- /docs/docs/navi/navigate-destination.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/navi/navigate-destination.mdx -------------------------------------------------------------------------------- /docs/docs/navi/share-destination.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/navi/share-destination.mdx -------------------------------------------------------------------------------- /docs/docs/share/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/share/_category_.json -------------------------------------------------------------------------------- /docs/docs/share/component-types.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/share/component-types.mdx -------------------------------------------------------------------------------- /docs/docs/share/intro-android.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/share/intro-android.mdx -------------------------------------------------------------------------------- /docs/docs/share/intro-expo.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/share/intro-expo.mdx -------------------------------------------------------------------------------- /docs/docs/share/intro-ios.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/share/intro-ios.mdx -------------------------------------------------------------------------------- /docs/docs/share/intro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/share/intro.mdx -------------------------------------------------------------------------------- /docs/docs/share/partial/_calendar.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/share/partial/_calendar.mdx -------------------------------------------------------------------------------- /docs/docs/share/partial/_commerce.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/share/partial/_commerce.mdx -------------------------------------------------------------------------------- /docs/docs/share/partial/_feed.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/share/partial/_feed.mdx -------------------------------------------------------------------------------- /docs/docs/share/partial/_list.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/share/partial/_list.mdx -------------------------------------------------------------------------------- /docs/docs/share/partial/_location.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/share/partial/_location.mdx -------------------------------------------------------------------------------- /docs/docs/share/partial/_send_default_template.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/share/partial/_send_default_template.mdx -------------------------------------------------------------------------------- /docs/docs/share/partial/_share_default_template.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/share/partial/_share_default_template.mdx -------------------------------------------------------------------------------- /docs/docs/share/partial/_text.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/share/partial/_text.mdx -------------------------------------------------------------------------------- /docs/docs/share/send-custom.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/share/send-custom.mdx -------------------------------------------------------------------------------- /docs/docs/share/send-default-calendar.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/share/send-default-calendar.mdx -------------------------------------------------------------------------------- /docs/docs/share/send-default-commerce.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/share/send-default-commerce.mdx -------------------------------------------------------------------------------- /docs/docs/share/send-default-feed.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/share/send-default-feed.mdx -------------------------------------------------------------------------------- /docs/docs/share/send-default-list.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/share/send-default-list.mdx -------------------------------------------------------------------------------- /docs/docs/share/send-default-location.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/share/send-default-location.mdx -------------------------------------------------------------------------------- /docs/docs/share/send-default-text.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/share/send-default-text.mdx -------------------------------------------------------------------------------- /docs/docs/share/share-custom.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/share/share-custom.mdx -------------------------------------------------------------------------------- /docs/docs/share/share-default-calendar.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/share/share-default-calendar.mdx -------------------------------------------------------------------------------- /docs/docs/share/share-default-commerce.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/share/share-default-commerce.mdx -------------------------------------------------------------------------------- /docs/docs/share/share-default-feed.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/share/share-default-feed.mdx -------------------------------------------------------------------------------- /docs/docs/share/share-default-list.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/share/share-default-list.mdx -------------------------------------------------------------------------------- /docs/docs/share/share-default-location.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/share/share-default-location.mdx -------------------------------------------------------------------------------- /docs/docs/share/share-default-text.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/share/share-default-text.mdx -------------------------------------------------------------------------------- /docs/docs/share/troubleshooting.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/share/troubleshooting.mdx -------------------------------------------------------------------------------- /docs/docs/social/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/social/_category_.json -------------------------------------------------------------------------------- /docs/docs/social/get-friends.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/social/get-friends.mdx -------------------------------------------------------------------------------- /docs/docs/social/get-talk-profile.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/social/get-talk-profile.mdx -------------------------------------------------------------------------------- /docs/docs/social/intro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/social/intro.mdx -------------------------------------------------------------------------------- /docs/docs/social/select-talk-friends.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/social/select-talk-friends.mdx -------------------------------------------------------------------------------- /docs/docs/user/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/user/_category_.json -------------------------------------------------------------------------------- /docs/docs/user/access-token.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/user/access-token.mdx -------------------------------------------------------------------------------- /docs/docs/user/intro-android.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/user/intro-android.mdx -------------------------------------------------------------------------------- /docs/docs/user/intro-expo.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/user/intro-expo.mdx -------------------------------------------------------------------------------- /docs/docs/user/intro-ios.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/user/intro-ios.mdx -------------------------------------------------------------------------------- /docs/docs/user/intro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/user/intro.mdx -------------------------------------------------------------------------------- /docs/docs/user/login-web.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/user/login-web.mdx -------------------------------------------------------------------------------- /docs/docs/user/login.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/user/login.mdx -------------------------------------------------------------------------------- /docs/docs/user/profile.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/user/profile.mdx -------------------------------------------------------------------------------- /docs/docs/user/scope.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/user/scope.mdx -------------------------------------------------------------------------------- /docs/docs/user/service-terms.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/user/service-terms.mdx -------------------------------------------------------------------------------- /docs/docs/user/shipping-address.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docs/user/shipping-address.mdx -------------------------------------------------------------------------------- /docs/docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/docusaurus.config.ts -------------------------------------------------------------------------------- /docs/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/env.d.ts -------------------------------------------------------------------------------- /docs/i18n/en/code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/code.json -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-blog/options.json -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current.json -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/advanced/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/advanced/_category_.json -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/advanced/thread.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/advanced/thread.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/channel/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/channel/_category_.json -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/channel/add-channel.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/channel/add-channel.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/channel/chat-channel.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/channel/chat-channel.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/channel/faq.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/channel/faq.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/channel/follow-channel.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/channel/follow-channel.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/channel/get-channels.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/channel/get-channels.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/channel/intro-android.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/channel/intro-android.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/channel/intro-expo.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/channel/intro-expo.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/channel/intro-ios.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/channel/intro-ios.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/channel/intro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/channel/intro.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/core/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/core/_category_.json -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/core/get-android-keyhash.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/core/get-android-keyhash.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/core/initialize-sdk.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/core/initialize-sdk.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/core/intro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/core/intro.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/error-handling.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/error-handling.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/install-android.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/install-android.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/install-core.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/install-core.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/install-expo.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/install-expo.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/install-ios.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/install-ios.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/install-web.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/install-web.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/intro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/intro.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/navi/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/navi/_category_.json -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/navi/intro-expo.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/navi/intro-expo.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/navi/intro-ios.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/navi/intro-ios.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/navi/intro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/navi/intro.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/navi/navigate-destination.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/navi/navigate-destination.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/navi/share-destination.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/navi/share-destination.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/share/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/share/_category_.json -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/share/component-types.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/share/component-types.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/share/intro-android.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/share/intro-android.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/share/intro-expo.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/share/intro-expo.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/share/intro-ios.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/share/intro-ios.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/share/intro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/share/intro.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/share/partial/_calendar.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/share/partial/_calendar.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/share/partial/_commerce.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/share/partial/_commerce.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/share/partial/_feed.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/share/partial/_feed.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/share/partial/_list.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/share/partial/_list.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/share/partial/_location.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/share/partial/_location.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/share/partial/_send_default_template.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/share/partial/_send_default_template.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/share/partial/_share_default_template.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/share/partial/_share_default_template.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/share/partial/_text.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/share/partial/_text.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/share/send-custom.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/share/send-custom.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/share/send-default-calendar.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/share/send-default-calendar.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/share/send-default-commerce.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/share/send-default-commerce.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/share/send-default-feed.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/share/send-default-feed.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/share/send-default-list.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/share/send-default-list.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/share/send-default-location.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/share/send-default-location.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/share/send-default-text.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/share/send-default-text.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/share/share-custom.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/share/share-custom.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/share/share-default-calendar.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/share/share-default-calendar.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/share/share-default-commerce.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/share/share-default-commerce.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/share/share-default-feed.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/share/share-default-feed.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/share/share-default-list.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/share/share-default-list.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/share/share-default-location.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/share/share-default-location.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/share/share-default-text.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/share/share-default-text.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/share/troubleshooting.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/share/troubleshooting.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/social/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/social/_category_.json -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/social/get-friends.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/social/get-friends.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/social/get-talk-profile.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/social/get-talk-profile.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/social/intro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/social/intro.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/social/select-talk-friends.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/social/select-talk-friends.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/user/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/user/_category_.json -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/user/access-token.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/user/access-token.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/user/intro-android.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/user/intro-android.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/user/intro-expo.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/user/intro-expo.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/user/intro-ios.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/user/intro-ios.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/user/intro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/user/intro.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/user/login-web.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/user/login-web.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/user/login.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/user/login.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/user/profile.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/user/profile.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/user/scope.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/user/scope.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/user/service-terms.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/user/service-terms.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-plugin-content-docs/current/user/shipping-address.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-plugin-content-docs/current/user/shipping-address.mdx -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-theme-classic/footer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-theme-classic/footer.json -------------------------------------------------------------------------------- /docs/i18n/en/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/i18n/en/docusaurus-theme-classic/navbar.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/sidebars.ts -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/src/components/HomepageFeatures/index.tsx -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/src/components/HomepageFeatures/styles.module.css -------------------------------------------------------------------------------- /docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/src/css/custom.css -------------------------------------------------------------------------------- /docs/src/pages/index.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/src/pages/index.module.scss -------------------------------------------------------------------------------- /docs/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/src/pages/index.tsx -------------------------------------------------------------------------------- /docs/src/pages/markdown-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/src/pages/markdown-page.md -------------------------------------------------------------------------------- /docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/static/favicon.ico -------------------------------------------------------------------------------- /docs/static/img/ai-creativity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/static/img/ai-creativity.svg -------------------------------------------------------------------------------- /docs/static/img/building-community.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/static/img/building-community.svg -------------------------------------------------------------------------------- /docs/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/static/img/favicon.ico -------------------------------------------------------------------------------- /docs/static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/static/img/favicon.png -------------------------------------------------------------------------------- /docs/static/img/finding-topics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/static/img/finding-topics.svg -------------------------------------------------------------------------------- /docs/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/static/img/logo.png -------------------------------------------------------------------------------- /docs/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/static/img/logo.svg -------------------------------------------------------------------------------- /docs/static/img/social-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/static/img/social-card.png -------------------------------------------------------------------------------- /docs/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /docs/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/docs/vercel.json -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/example/Gemfile -------------------------------------------------------------------------------- /example/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/example/Gemfile.lock -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/example/README.md -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/example/app.json -------------------------------------------------------------------------------- /example/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/example/assets/favicon.png -------------------------------------------------------------------------------- /example/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/example/assets/icon.png -------------------------------------------------------------------------------- /example/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/example/assets/splash.png -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/example/package.json -------------------------------------------------------------------------------- /example/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/example/public/index.html -------------------------------------------------------------------------------- /example/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/example/react-native.config.js -------------------------------------------------------------------------------- /example/src/app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/example/src/app/_layout.tsx -------------------------------------------------------------------------------- /example/src/app/channel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/example/src/app/channel.tsx -------------------------------------------------------------------------------- /example/src/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/example/src/app/index.tsx -------------------------------------------------------------------------------- /example/src/app/navi.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/example/src/app/navi.tsx -------------------------------------------------------------------------------- /example/src/app/share.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/example/src/app/share.tsx -------------------------------------------------------------------------------- /example/src/app/social.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/example/src/app/social.tsx -------------------------------------------------------------------------------- /example/src/app/user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/example/src/app/user.tsx -------------------------------------------------------------------------------- /example/src/component/Box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/example/src/component/Box.tsx -------------------------------------------------------------------------------- /example/src/component/Btn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/example/src/component/Btn.tsx -------------------------------------------------------------------------------- /example/src/component/PrettyResult.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/example/src/component/PrettyResult.tsx -------------------------------------------------------------------------------- /example/src/component/Row.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/example/src/component/Row.tsx -------------------------------------------------------------------------------- /example/src/component/StyledScrollView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/example/src/component/StyledScrollView.tsx -------------------------------------------------------------------------------- /example/src/component/Txt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/example/src/component/Txt.tsx -------------------------------------------------------------------------------- /example/src/design/AppTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/example/src/design/AppTheme.ts -------------------------------------------------------------------------------- /example/src/design/token/C.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/example/src/design/token/C.ts -------------------------------------------------------------------------------- /example/src/design/token/Sp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/example/src/design/token/Sp.ts -------------------------------------------------------------------------------- /example/src/root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/example/src/root.js -------------------------------------------------------------------------------- /example/src/util/px.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/example/src/util/px.ts -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/lefthook.yml -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/package.json -------------------------------------------------------------------------------- /packages/channel/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/channel/CHANGELOG.md -------------------------------------------------------------------------------- /packages/channel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/channel/LICENSE -------------------------------------------------------------------------------- /packages/channel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/channel/README.md -------------------------------------------------------------------------------- /packages/channel/RNCKakaoChannel.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/channel/RNCKakaoChannel.podspec -------------------------------------------------------------------------------- /packages/channel/android/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/channel/android/.editorconfig -------------------------------------------------------------------------------- /packages/channel/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/channel/android/build.gradle -------------------------------------------------------------------------------- /packages/channel/android/gradle.properties: -------------------------------------------------------------------------------- 1 | Kakao_kotlinVersion=1.7.0 2 | -------------------------------------------------------------------------------- /packages/channel/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/channel/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /packages/channel/android/src/main/AndroidManifestNew.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/channel/android/src/main/AndroidManifestNew.xml -------------------------------------------------------------------------------- /packages/channel/android/src/main/java/net/mjstudio/rnkakao/channel/RNCKakaoChannelModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/channel/android/src/main/java/net/mjstudio/rnkakao/channel/RNCKakaoChannelModule.kt -------------------------------------------------------------------------------- /packages/channel/android/src/main/java/net/mjstudio/rnkakao/channel/RNCKakaoChannelPackage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/channel/android/src/main/java/net/mjstudio/rnkakao/channel/RNCKakaoChannelPackage.kt -------------------------------------------------------------------------------- /packages/channel/android/src/newarch/KakaoChannelSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/channel/android/src/newarch/KakaoChannelSpec.kt -------------------------------------------------------------------------------- /packages/channel/android/src/oldarch/KakaoChannelSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/channel/android/src/oldarch/KakaoChannelSpec.kt -------------------------------------------------------------------------------- /packages/channel/ios/RNCKakaoChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/channel/ios/RNCKakaoChannel.h -------------------------------------------------------------------------------- /packages/channel/ios/RNCKakaoChannel.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/channel/ios/RNCKakaoChannel.mm -------------------------------------------------------------------------------- /packages/channel/ios/RNCKakaoChannelManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/channel/ios/RNCKakaoChannelManager.swift -------------------------------------------------------------------------------- /packages/channel/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/channel/package.json -------------------------------------------------------------------------------- /packages/channel/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/channel/src/index.ts -------------------------------------------------------------------------------- /packages/channel/src/index.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/channel/src/index.web.ts -------------------------------------------------------------------------------- /packages/channel/src/spec/NativeKakaoChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/channel/src/spec/NativeKakaoChannel.ts -------------------------------------------------------------------------------- /packages/channel/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/channel/tsconfig.build.json -------------------------------------------------------------------------------- /packages/channel/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/channel/tsconfig.json -------------------------------------------------------------------------------- /packages/core/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/core/CHANGELOG.md -------------------------------------------------------------------------------- /packages/core/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/core/LICENSE -------------------------------------------------------------------------------- /packages/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/core/README.md -------------------------------------------------------------------------------- /packages/core/RNCKakaoCore.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/core/RNCKakaoCore.podspec -------------------------------------------------------------------------------- /packages/core/android/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/core/android/.editorconfig -------------------------------------------------------------------------------- /packages/core/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/core/android/build.gradle -------------------------------------------------------------------------------- /packages/core/android/package-json.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/core/android/package-json.gradle -------------------------------------------------------------------------------- /packages/core/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/core/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /packages/core/android/src/main/AndroidManifestNew.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/core/android/src/main/AndroidManifestNew.xml -------------------------------------------------------------------------------- /packages/core/android/src/main/java/net/mjstudio/rnkakao/core/RNCKakaoCoreModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/core/android/src/main/java/net/mjstudio/rnkakao/core/RNCKakaoCoreModule.kt -------------------------------------------------------------------------------- /packages/core/android/src/main/java/net/mjstudio/rnkakao/core/RNCKakaoCorePackage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/core/android/src/main/java/net/mjstudio/rnkakao/core/RNCKakaoCorePackage.kt -------------------------------------------------------------------------------- /packages/core/android/src/main/java/net/mjstudio/rnkakao/core/util/DebugE.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/core/android/src/main/java/net/mjstudio/rnkakao/core/util/DebugE.kt -------------------------------------------------------------------------------- /packages/core/android/src/main/java/net/mjstudio/rnkakao/core/util/RNCKakaoException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/core/android/src/main/java/net/mjstudio/rnkakao/core/util/RNCKakaoException.kt -------------------------------------------------------------------------------- /packages/core/android/src/main/java/net/mjstudio/rnkakao/core/util/RNCKakaoUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/core/android/src/main/java/net/mjstudio/rnkakao/core/util/RNCKakaoUtil.kt -------------------------------------------------------------------------------- /packages/core/android/src/newarch/KakaoCoreSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/core/android/src/newarch/KakaoCoreSpec.kt -------------------------------------------------------------------------------- /packages/core/android/src/oldarch/KakaoCoreSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/core/android/src/oldarch/KakaoCoreSpec.kt -------------------------------------------------------------------------------- /packages/core/app.plugin.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./expo-config-plugin/build'); 2 | -------------------------------------------------------------------------------- /packages/core/expo-config-plugin/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/core/expo-config-plugin/src/index.ts -------------------------------------------------------------------------------- /packages/core/expo-config-plugin/src/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/core/expo-config-plugin/src/type.ts -------------------------------------------------------------------------------- /packages/core/expo-config-plugin/src/withAndroid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/core/expo-config-plugin/src/withAndroid.ts -------------------------------------------------------------------------------- /packages/core/expo-config-plugin/src/withIos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/core/expo-config-plugin/src/withIos.ts -------------------------------------------------------------------------------- /packages/core/expo-config-plugin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/core/expo-config-plugin/tsconfig.json -------------------------------------------------------------------------------- /packages/core/ios/RNCKakaoCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/core/ios/RNCKakaoCore.h -------------------------------------------------------------------------------- /packages/core/ios/RNCKakaoCore.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/core/ios/RNCKakaoCore.mm -------------------------------------------------------------------------------- /packages/core/ios/RNCKakaoCoreManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/core/ios/RNCKakaoCoreManager.swift -------------------------------------------------------------------------------- /packages/core/ios/Util/RNCKakaoError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/core/ios/Util/RNCKakaoError.swift -------------------------------------------------------------------------------- /packages/core/ios/Util/RNCkakaoUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/core/ios/Util/RNCkakaoUtil.swift -------------------------------------------------------------------------------- /packages/core/ios/Util/debugE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/core/ios/Util/debugE.swift -------------------------------------------------------------------------------- /packages/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/core/package.json -------------------------------------------------------------------------------- /packages/core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/core/src/index.ts -------------------------------------------------------------------------------- /packages/core/src/index.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/core/src/index.web.ts -------------------------------------------------------------------------------- /packages/core/src/spec/NativeKakaoCore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/core/src/spec/NativeKakaoCore.ts -------------------------------------------------------------------------------- /packages/core/src/util/kAssert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/core/src/util/kAssert.ts -------------------------------------------------------------------------------- /packages/core/src/util/kCreateWebError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/core/src/util/kCreateWebError.ts -------------------------------------------------------------------------------- /packages/core/src/util/kFetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/core/src/util/kFetch.ts -------------------------------------------------------------------------------- /packages/core/src/util/kGlobalStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/core/src/util/kGlobalStorage.ts -------------------------------------------------------------------------------- /packages/core/src/util/kRunWebAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/core/src/util/kRunWebAPI.ts -------------------------------------------------------------------------------- /packages/core/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/core/tsconfig.build.json -------------------------------------------------------------------------------- /packages/core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/core/tsconfig.json -------------------------------------------------------------------------------- /packages/navi/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/navi/CHANGELOG.md -------------------------------------------------------------------------------- /packages/navi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/navi/LICENSE -------------------------------------------------------------------------------- /packages/navi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/navi/README.md -------------------------------------------------------------------------------- /packages/navi/RNCKakaoNavi.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/navi/RNCKakaoNavi.podspec -------------------------------------------------------------------------------- /packages/navi/android/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/navi/android/.editorconfig -------------------------------------------------------------------------------- /packages/navi/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/navi/android/build.gradle -------------------------------------------------------------------------------- /packages/navi/android/gradle.properties: -------------------------------------------------------------------------------- 1 | Kakao_kotlinVersion=1.7.0 2 | -------------------------------------------------------------------------------- /packages/navi/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/navi/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /packages/navi/android/src/main/AndroidManifestNew.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/navi/android/src/main/AndroidManifestNew.xml -------------------------------------------------------------------------------- /packages/navi/android/src/main/java/net/mjstudio/rnkakao/navi/RNCKakaoNaviModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/navi/android/src/main/java/net/mjstudio/rnkakao/navi/RNCKakaoNaviModule.kt -------------------------------------------------------------------------------- /packages/navi/android/src/main/java/net/mjstudio/rnkakao/navi/RNCKakaoNaviPackage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/navi/android/src/main/java/net/mjstudio/rnkakao/navi/RNCKakaoNaviPackage.kt -------------------------------------------------------------------------------- /packages/navi/android/src/newarch/KakaoNaviSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/navi/android/src/newarch/KakaoNaviSpec.kt -------------------------------------------------------------------------------- /packages/navi/android/src/oldarch/KakaoNaviSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/navi/android/src/oldarch/KakaoNaviSpec.kt -------------------------------------------------------------------------------- /packages/navi/ios/RNCKakaoNavi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/navi/ios/RNCKakaoNavi.h -------------------------------------------------------------------------------- /packages/navi/ios/RNCKakaoNavi.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/navi/ios/RNCKakaoNavi.mm -------------------------------------------------------------------------------- /packages/navi/ios/RNCKakaoNaviManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/navi/ios/RNCKakaoNaviManager.swift -------------------------------------------------------------------------------- /packages/navi/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/navi/package.json -------------------------------------------------------------------------------- /packages/navi/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/navi/src/index.ts -------------------------------------------------------------------------------- /packages/navi/src/index.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/navi/src/index.web.ts -------------------------------------------------------------------------------- /packages/navi/src/spec/NativeKakaoNavi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/navi/src/spec/NativeKakaoNavi.ts -------------------------------------------------------------------------------- /packages/navi/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/navi/tsconfig.build.json -------------------------------------------------------------------------------- /packages/navi/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/navi/tsconfig.json -------------------------------------------------------------------------------- /packages/share/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/share/CHANGELOG.md -------------------------------------------------------------------------------- /packages/share/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/share/LICENSE -------------------------------------------------------------------------------- /packages/share/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/share/README.md -------------------------------------------------------------------------------- /packages/share/RNCKakaoShare.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/share/RNCKakaoShare.podspec -------------------------------------------------------------------------------- /packages/share/android/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/share/android/.editorconfig -------------------------------------------------------------------------------- /packages/share/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/share/android/build.gradle -------------------------------------------------------------------------------- /packages/share/android/gradle.properties: -------------------------------------------------------------------------------- 1 | Kakao_kotlinVersion=1.7.0 2 | -------------------------------------------------------------------------------- /packages/share/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/share/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /packages/share/android/src/main/AndroidManifestNew.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/share/android/src/main/AndroidManifestNew.xml -------------------------------------------------------------------------------- /packages/share/android/src/main/java/net/mjstudio/rnkakao/share/RNCKakaoShareModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/share/android/src/main/java/net/mjstudio/rnkakao/share/RNCKakaoShareModule.kt -------------------------------------------------------------------------------- /packages/share/android/src/main/java/net/mjstudio/rnkakao/share/RNCKakaoSharePackage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/share/android/src/main/java/net/mjstudio/rnkakao/share/RNCKakaoSharePackage.kt -------------------------------------------------------------------------------- /packages/share/android/src/main/java/net/mjstudio/rnkakao/share/RNCKakaoShareTemplates.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/share/android/src/main/java/net/mjstudio/rnkakao/share/RNCKakaoShareTemplates.kt -------------------------------------------------------------------------------- /packages/share/android/src/newarch/KakaoShareSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/share/android/src/newarch/KakaoShareSpec.kt -------------------------------------------------------------------------------- /packages/share/android/src/oldarch/KakaoShareSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/share/android/src/oldarch/KakaoShareSpec.kt -------------------------------------------------------------------------------- /packages/share/ios/RNCKakaoShare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/share/ios/RNCKakaoShare.h -------------------------------------------------------------------------------- /packages/share/ios/RNCKakaoShare.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/share/ios/RNCKakaoShare.mm -------------------------------------------------------------------------------- /packages/share/ios/RNCKakaoShareManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/share/ios/RNCKakaoShareManager.swift -------------------------------------------------------------------------------- /packages/share/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/share/package.json -------------------------------------------------------------------------------- /packages/share/src/__tests__/index.test.tsx: -------------------------------------------------------------------------------- 1 | it.todo('write a test'); 2 | -------------------------------------------------------------------------------- /packages/share/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/share/src/index.ts -------------------------------------------------------------------------------- /packages/share/src/index.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/share/src/index.web.ts -------------------------------------------------------------------------------- /packages/share/src/spec/NativeKakaoShare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/share/src/spec/NativeKakaoShare.ts -------------------------------------------------------------------------------- /packages/share/src/util/swapMobileExecutionParamsFieldValueIntoStringInIOS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/share/src/util/swapMobileExecutionParamsFieldValueIntoStringInIOS.ts -------------------------------------------------------------------------------- /packages/share/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/share/tsconfig.build.json -------------------------------------------------------------------------------- /packages/share/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/share/tsconfig.json -------------------------------------------------------------------------------- /packages/social/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/social/CHANGELOG.md -------------------------------------------------------------------------------- /packages/social/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/social/LICENSE -------------------------------------------------------------------------------- /packages/social/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/social/README.md -------------------------------------------------------------------------------- /packages/social/RNCKakaoSocial.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/social/RNCKakaoSocial.podspec -------------------------------------------------------------------------------- /packages/social/android/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/social/android/.editorconfig -------------------------------------------------------------------------------- /packages/social/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/social/android/build.gradle -------------------------------------------------------------------------------- /packages/social/android/gradle.properties: -------------------------------------------------------------------------------- 1 | Kakao_kotlinVersion=1.7.0 2 | -------------------------------------------------------------------------------- /packages/social/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/social/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /packages/social/android/src/main/AndroidManifestNew.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/social/android/src/main/AndroidManifestNew.xml -------------------------------------------------------------------------------- /packages/social/android/src/main/java/net/mjstudio/rnkakao/social/RNCKakaoSocialModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/social/android/src/main/java/net/mjstudio/rnkakao/social/RNCKakaoSocialModule.kt -------------------------------------------------------------------------------- /packages/social/android/src/main/java/net/mjstudio/rnkakao/social/RNCKakaoSocialPackage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/social/android/src/main/java/net/mjstudio/rnkakao/social/RNCKakaoSocialPackage.kt -------------------------------------------------------------------------------- /packages/social/android/src/newarch/KakaoSocialSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/social/android/src/newarch/KakaoSocialSpec.kt -------------------------------------------------------------------------------- /packages/social/android/src/oldarch/KakaoSocialSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/social/android/src/oldarch/KakaoSocialSpec.kt -------------------------------------------------------------------------------- /packages/social/ios/RNCKakaoSocial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/social/ios/RNCKakaoSocial.h -------------------------------------------------------------------------------- /packages/social/ios/RNCKakaoSocial.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/social/ios/RNCKakaoSocial.mm -------------------------------------------------------------------------------- /packages/social/ios/RNCKakaoSocialManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/social/ios/RNCKakaoSocialManager.swift -------------------------------------------------------------------------------- /packages/social/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/social/package.json -------------------------------------------------------------------------------- /packages/social/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/social/src/index.ts -------------------------------------------------------------------------------- /packages/social/src/index.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/social/src/index.web.ts -------------------------------------------------------------------------------- /packages/social/src/spec/NativeKakaoSocial.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/social/src/spec/NativeKakaoSocial.ts -------------------------------------------------------------------------------- /packages/social/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/social/tsconfig.build.json -------------------------------------------------------------------------------- /packages/social/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/social/tsconfig.json -------------------------------------------------------------------------------- /packages/user/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/user/CHANGELOG.md -------------------------------------------------------------------------------- /packages/user/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/user/LICENSE -------------------------------------------------------------------------------- /packages/user/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/user/README.md -------------------------------------------------------------------------------- /packages/user/RNCKakaoUser.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/user/RNCKakaoUser.podspec -------------------------------------------------------------------------------- /packages/user/android/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/user/android/.editorconfig -------------------------------------------------------------------------------- /packages/user/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/user/android/build.gradle -------------------------------------------------------------------------------- /packages/user/android/gradle.properties: -------------------------------------------------------------------------------- 1 | Kakao_kotlinVersion=1.7.0 2 | -------------------------------------------------------------------------------- /packages/user/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/user/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /packages/user/android/src/main/AndroidManifestNew.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/user/android/src/main/AndroidManifestNew.xml -------------------------------------------------------------------------------- /packages/user/android/src/main/java/net/mjstudio/rnkakao/user/RNCKakaoUserModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/user/android/src/main/java/net/mjstudio/rnkakao/user/RNCKakaoUserModule.kt -------------------------------------------------------------------------------- /packages/user/android/src/main/java/net/mjstudio/rnkakao/user/RNCKakaoUserPackage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/user/android/src/main/java/net/mjstudio/rnkakao/user/RNCKakaoUserPackage.kt -------------------------------------------------------------------------------- /packages/user/android/src/newarch/KakaoUserSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/user/android/src/newarch/KakaoUserSpec.kt -------------------------------------------------------------------------------- /packages/user/android/src/oldarch/KakaoUserSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/user/android/src/oldarch/KakaoUserSpec.kt -------------------------------------------------------------------------------- /packages/user/ios/RNCKakaoUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/user/ios/RNCKakaoUser.h -------------------------------------------------------------------------------- /packages/user/ios/RNCKakaoUser.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/user/ios/RNCKakaoUser.mm -------------------------------------------------------------------------------- /packages/user/ios/RNCKakaoUserManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/user/ios/RNCKakaoUserManager.swift -------------------------------------------------------------------------------- /packages/user/ios/RNCKakaoUserUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/user/ios/RNCKakaoUserUtil.h -------------------------------------------------------------------------------- /packages/user/ios/RNCKakaoUserUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/user/ios/RNCKakaoUserUtil.mm -------------------------------------------------------------------------------- /packages/user/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/user/package.json -------------------------------------------------------------------------------- /packages/user/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/user/src/index.ts -------------------------------------------------------------------------------- /packages/user/src/index.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/user/src/index.web.ts -------------------------------------------------------------------------------- /packages/user/src/spec/NativeKakaoUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/user/src/spec/NativeKakaoUser.ts -------------------------------------------------------------------------------- /packages/user/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/user/tsconfig.build.json -------------------------------------------------------------------------------- /packages/user/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/packages/user/tsconfig.json -------------------------------------------------------------------------------- /script/arch-convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/script/arch-convert.sh -------------------------------------------------------------------------------- /script/ci-android-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/script/ci-android-build.sh -------------------------------------------------------------------------------- /script/ci-ios-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/script/ci-ios-build.sh -------------------------------------------------------------------------------- /script/clang-format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/script/clang-format.sh -------------------------------------------------------------------------------- /script/clang-lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/script/clang-lint.sh -------------------------------------------------------------------------------- /script/ktlint-format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/script/ktlint-format.sh -------------------------------------------------------------------------------- /script/ktlint-lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/script/ktlint-lint.sh -------------------------------------------------------------------------------- /script/publish.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | lerna publish from-package 4 | -------------------------------------------------------------------------------- /script/remove-web-declaration-files.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/script/remove-web-declaration-files.mjs -------------------------------------------------------------------------------- /script/swift-format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/script/swift-format.sh -------------------------------------------------------------------------------- /script/swift-lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/script/swift-lint.sh -------------------------------------------------------------------------------- /script/version-prerelease.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/script/version-prerelease.sh -------------------------------------------------------------------------------- /script/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/script/version.sh -------------------------------------------------------------------------------- /script/web-module-path-util.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/script/web-module-path-util.mjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/turbo.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mym0404/react-native-kakao/HEAD/yarn.lock --------------------------------------------------------------------------------