Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move iOS and Android SDK to development phase #181

Merged
merged 1 commit into from
Dec 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 24 additions & 20 deletions components/Layout/MobileGnbDropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,26 +87,30 @@ export function MobileGnbDropdown({ isLoggedIn }: { isLoggedIn: boolean }) {
JS SDK
</Link>
</li>
<li className="navigator_group">
<Link
href="/docs/ios-sdk"
className={classNames('navigator_item', 'add_icon', {
is_active: asPath.startsWith(`/docs/ios-sdk`),
})}
>
iOS SDK
</Link>
</li>
<li className="navigator_group">
<Link
href="/docs/android-sdk"
className={classNames('navigator_item', 'add_icon', {
is_active: asPath.startsWith(`/docs/android-sdk`),
})}
>
Android SDK
</Link>
</li>
{process.env.NODE_ENV === 'development' && (
<>
<li className="navigator_group">
<Link
href="/docs/ios-sdk"
className={classNames('navigator_item', 'add_icon', {
is_active: asPath.startsWith(`/docs/ios-sdk`),
})}
>
iOS SDK
</Link>
</li>
<li className="navigator_group">
<Link
href="/docs/android-sdk"
className={classNames('navigator_item', 'add_icon', {
is_active: asPath.startsWith(`/docs/android-sdk`),
})}
>
Android SDK
</Link>
</li>
</>
)}
<li className="navigator_group">
<Link
href="/docs/devtools"
Expand Down
1 change: 1 addition & 0 deletions docs/android-sdk.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: 'Android SDK'
order: 50
phase: development
---

## Android SDK
Expand Down
2 changes: 2 additions & 0 deletions docs/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,7 @@ Welcome to Yorkie! In this guide, we will walk you through the steps to install
You can choose your preferred technology from the options below:

- [with JS SDK](/docs/getting-started/with-js-sdk)

iOS and Android SDKs are coming soon. Stay tuned!
- [with iOS SDK](/docs/getting-started/with-ios-sdk)
- [with Android SDK](/docs/getting-started/with-android-sdk)
1 change: 1 addition & 0 deletions docs/getting-started/with-android-sdk.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: 'with Android SDK'
order: 23
phase: development
---

## Getting Started with Android SDK
Expand Down
1 change: 1 addition & 0 deletions docs/getting-started/with-ios-sdk.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: 'with iOS SDK'
order: 22
phase: development
---

## Getting Started with iOS SDK
Expand Down
1 change: 1 addition & 0 deletions docs/ios-sdk.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: 'iOS SDK'
order: 40
phase: development
---

## iOS SDK
Expand Down
Loading