Skip to content

Commit 63749de

Browse files
committed
Initial edits.
Signed-off-by: bgravenorst <byron.gravenorst@consensys.net>
1 parent 8811d25 commit 63749de

File tree

6 files changed

+25
-19
lines changed

6 files changed

+25
-19
lines changed
Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,27 @@
1-
### MetaMask Embedded Wallets Android Quick Start
1+
### MetaMask Embedded Wallets Android quickstart
22

3-
This guide is designed to help you quickly integrate a basic instance of MetaMask Embedded Wallet SDKs in your Android app.
3+
This quickstart is designed to help you quickly integrate MetaMask Embedded Wallet SDKs in your
4+
Android app.
45

5-
If you face any problem anytime, you can always find help in the [Web3Auth Community](https://web3auth.io/community/c/help-pnp/pnp-android/16).
6+
To view the quickstart for a different platform, select the dropdown in the menu bar and choose your target
7+
platform. For example, iOS/Swift, React, Flutter, Angular, and others.
68

7-
:::tip building locally
9+
If you need help, visit the [Web3Auth Community](https://web3auth.io/community/c/help-pnp/pnp-android/16).
810

9-
- Clone the MetaMask Embedded Wallets Android Quick Start Application
11+
:::tip build locally
12+
13+
To build the project locally:
14+
15+
- Clone the MetaMask Embedded Wallets Android quickstart application.
1016

1117
```shell npm2yarn
1218
npx degit Web3Auth/web3auth-android-examples/android-quick-start w3a-android-quick-start
1319
```
1420

15-
- Install & Run
21+
- Change to the quickstart directory and run the project in Android Studio.
1622

1723
```shell npm2yarn
1824
cd w3a-android-quick-start
19-
### run android project in Android Studio
2025
```
2126

2227
:::

src/pages/quickstart/builder/embedded-wallets/android/stepContent/enableInternetUsage.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### Enable Internet usage
1+
### Enable internet usage
22

33
Open your app's `AndroidManifest.xml` file and add the following permission:
44

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
### Installation
1+
### Install the MetaMask Embedded Wallets Android SDK
22

3-
Add MetaMask's Web3Auth Android SDK to the dependency list. In your app-level `build.gradle` dependencies section, add the latest `com.github.Web3Auth:web3auth-android-sdk`.
3+
Add the Android SDK to the dependency list of your app-level `build.gradle`
4+
file. Add the latest `com.github.Web3Auth:web3auth-android-sdk` package.
45

5-
:::warning Update to the Latest-SDK
6+
:::warning Update to the latest SDK
67

7-
Please use the **[latest version](https://github.com/Web3Auth/web3auth-android-sdk/releases)** of MetaMask's Web3Auth Android SDK.
8+
View the release notes to ensure you're using the [latest version](https://github.com/Web3Auth/web3auth-android-sdk/releases) of
9+
the Android SDK.
810

911
:::

src/pages/quickstart/builder/embedded-wallets/android/stepContent/jitpack.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### Add Jitpack Repository
1+
### Add the Jitpack repository
22

33
In your project-level `build.gradle` or `settings.gradle` file, add the JitPack repository.
44

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
:::note Requirements
1+
### Prerequisites
22

3-
- Android API version `24` or newer is required.
4-
- `targetSdk` & `compileSdk` should be `34` or newer.
3+
- Android API version 24+
4+
- `targetSdk` & `compileSdk` version 34+
55

6-
:::

src/pages/quickstart/builder/embedded-wallets/android/stepContent/singleTop.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
### Enable singleTop launchMode activity
1+
### Set your sign-in activity to `singleTop` launch mode
22

3-
Make sure your sign-in activity `launchMode` is set to **singleTop** in your `AndroidManifest.xml`
3+
Ensure your sign-in activity `launchMode` is set to `singleTop` in your `AndroidManifest.xml`
44

55
```xml
66
<activity

0 commit comments

Comments
 (0)