Skip to content

Commit 47cf99f

Browse files
xxhonggitbook-bot
authored andcommitted
GITBOOK-1083: No subject
1 parent 54adf5a commit 47cf99f

File tree

6 files changed

+17
-13
lines changed

6 files changed

+17
-13
lines changed

SUMMARY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
* [Transaction Construction](getting-started/platform-specific-guides/android/transaction-construction.md)
5353
* [Send a Transaction](getting-started/platform-specific-guides/android/send-a-transaction.md)
5454
* [How to use WalletService](getting-started/platform-specific-guides/android/how-to-use-walletservice.md)
55-
* [Smart Account](getting-started/platform-specific-guides/android/smart-account.md)
55+
* [Social Login + AA](getting-started/platform-specific-guides/android/social-login-+-aa.md)
5656
* [iOS](getting-started/platform-specific-guides/ios.md)
5757
* [Social Login + Embeded Wallet](getting-started/platform-specific-guides/ios/social-login-+-embeded-wallet.md)
5858
* [Social Login + AA](getting-started/platform-specific-guides/ios/social-login-+-aa.md)

getting-started/platform-specific-guides/android/how-to-use-walletservice.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Add `android:fullBackupContent="@xml/pn_backup_rules"` in the `application` elem
2929
</application>
3030
```
3131

32-
**Initialization:**
32+
#### **Initialization:**
3333

3434
```kotlin
3535
/**
@@ -51,7 +51,7 @@ ParticleWallet.init(application, supportChains).apply {
5151
}
5252
```
5353

54-
**Setting Wallet Information:**
54+
#### **Setting Wallet Information:**
5555

5656
After successfully logging in with Social Login or Wallet Connect, use the following code to set wallet information:
5757

@@ -70,25 +70,25 @@ adapter.connect(null, object : ConnectCallback {
7070
})
7171
```
7272

73-
**Open Wallet:**
73+
#### **Open Wallet:**
7474

7575
```kotlin
7676
PNRouter.build(RouterPath.Wallet).navigation()
7777
```
7878

79-
**Open Send Interface:**
79+
#### **Open Send Interface:**
8080

8181
```kotlin
8282
PNRouter.build(RouterPath.TokenSend).navigation()
8383
```
8484

85-
**Open Receive Interface:**
85+
#### **Open Receive Interface:**
8686

8787
```kotlin
8888
PNRouter.build(RouterPath.TokenReceive).navigation()
8989
```
9090

91-
**Open Swap:**
91+
#### **Open Swap:**
9292

9393
```kotlin
9494
PNRouter.navigatorSwap()

getting-started/platform-specific-guides/android/smart-account.md

Lines changed: 0 additions & 2 deletions
This file was deleted.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Social Login + AA
2+
3+
This guide will help you get started with Particle Connect and Particle AA Android SDK by setting up your environment, creating a wallet with a social account, and sending a User Operation from it. By the end of this guide, you'll have a basic understanding of how to use the SDK and where to look for more advanced use cases.
4+
5+
If you face any problems at any time, you can always refer to the Particle Community for us to help you out as soon as possible!
6+
7+
8+
9+
10+

getting-started/platform-specific-guides/android/social-login.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# Social Login
22

3-
**Introduction**
4-
53
This documentation provides a comprehensive guide on integrating and utilizing the ParticleConnect SDK in your Android application, with a primary focus on Social Login functionality. ParticleConnect facilitates seamless connectivity and authentication using social media accounts in your mobile applications.
64

75
By leveraging Social Login, your users can easily authenticate themselves using their preferred social media accounts, simplifying the onboarding process. Upon successful authentication, ParticleConnect enables you to obtain a web3 wallet address associated with the user's account.

getting-started/platform-specific-guides/android/wallet-connect.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# Wallet Connect
22

3-
**Introduction**
4-
53
This documentation provides a detailed guide on integrating and utilizing the ParticleConnect SDK in your Android application, focusing on Wallet Connect functionality. ParticleConnect simplifies the connection of decentralized wallets to your DApp through the Wallet Connect protocol.
64

75
**Configuration**

0 commit comments

Comments
 (0)