Skip to content

Commit e178f32

Browse files
xxhonggitbook-bot
authored andcommitted
GITBOOK-1084: No subject
1 parent 47cf99f commit e178f32

File tree

3 files changed

+33
-8
lines changed

3 files changed

+33
-8
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-
* [Social Login + AA](getting-started/platform-specific-guides/android/social-login-+-aa.md)
55+
* [Use AA](getting-started/platform-specific-guides/android/use-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: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,22 @@ dependencies {
2222

2323
Add `android:fullBackupContent="@xml/pn_backup_rules"` in the `application` element.
2424

25-
```xml
26-
<application
27-
android:fullBackupContent="@xml/pn_backup_rules">
28-
...
29-
</application>
30-
```
25+
<pre class="language-xml"><code class="lang-xml">&#x3C;manifest
26+
xmlns:tools="http://schemas.android.com/tools" //add this line
27+
>
28+
29+
//...
30+
31+
&#x3C;application
32+
android:fullBackupContent="@xml/pn_backup_rules"
33+
tools:replace="android:fullBackupContent"
34+
>
35+
36+
//...
37+
38+
<strong> &#x3C;/application>
39+
</strong>&#x3C;/manifest>
40+
</code></pre>
3141

3242
#### **Initialization:**
3343

Original file line numberDiff line numberDiff line change
@@ -1,10 +1,25 @@
1-
# Social Login + AA
1+
# Use AA
22

33
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.
44

55
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!
66

77

88

9+
**Gradle Dependencies:**
10+
11+
```gradle
12+
dependencies {
13+
//...
14+
implementation("network.particle:aa-service:$sdkVersion")
15+
}
16+
```
17+
18+
19+
20+
21+
22+
23+
924

1025

0 commit comments

Comments
 (0)