Skip to content

Commit 0ad3150

Browse files
Use tab mechanism
1 parent 0f0a864 commit 0ad3150

File tree

1 file changed

+24
-21
lines changed

1 file changed

+24
-21
lines changed

fern/docs/pages/sdks/mobile/cordova/quickstart.mdx

Lines changed: 24 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -41,24 +41,27 @@ cordova platform add android
4141
cordova platform add ios
4242
```
4343

44-
**On Android:**
45-
```sh
46-
cordova run android
47-
```
48-
OR open `platforms/android` in Android Studio and run the app.
49-
50-
**On iOS:**
51-
1. Open `platforms/ios/Podfile` and ensure it contains:
52-
```ruby
53-
platform :ios, '15.0'
54-
```
55-
2. Install dependencies:
56-
```sh
57-
cd platforms/ios
58-
pod install
59-
```
60-
3. Run the app:
61-
```sh
62-
cordova run ios
63-
```
64-
OR open `DevRevSDKSample.xcworkspace` in Xcode and run the app.
44+
<Tabs>
45+
<Tab title="Android">
46+
```sh
47+
cordova run android
48+
```
49+
OR open `platforms/android` in Android Studio and run the app.
50+
</Tab>
51+
<Tab title="iOS">
52+
1. Open `platforms/ios/Podfile` and ensure it contains:
53+
```ruby
54+
platform :ios, '15.0'
55+
```
56+
2. Install dependencies:
57+
```sh
58+
cd platforms/ios
59+
pod install
60+
```
61+
3. Run the app:
62+
```sh
63+
cordova run ios
64+
```
65+
OR open `DevRevSDKSample.xcworkspace` in Xcode and run the app.
66+
</Tab>
67+
</Tabs>

0 commit comments

Comments
 (0)