Skip to content

Commit 614e290

Browse files
committed
chore: add android permissions note to docs
1 parent baaedc9 commit 614e290

2 files changed

Lines changed: 12 additions & 0 deletions

File tree

compose/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,12 @@ class MyApplication : Application() {
5252
}
5353
```
5454

55+
Add the following permissions to your `AndroidManifest.xml`:
56+
57+
```xml
58+
<uses-permission android:name="android.permission.INTERNET" />
59+
```
60+
5561
#### Multiplatform
5662

5763
```kotlin

core/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,12 @@ class MyApplication : Application() {
5353
}
5454
```
5555

56+
Add the following permissions to your `AndroidManifest.xml`:
57+
58+
```xml
59+
<uses-permission android:name="android.permission.INTERNET" />
60+
```
61+
5662
#### Other Platforms
5763

5864
For non-Android platforms, initialization is similar but without the Android-specific storage provider:

0 commit comments

Comments
 (0)