Skip to content

Commit cdbd397

Browse files
author
Jonas Hendrickx
authored
Add INTERNET permission through the library
1 parent 2ab813f commit cdbd397

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/guide/frontend/android.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,27 +22,29 @@ The Passwordless.dev Android client SDK gives users the ability to leverage thei
2222
<dependency>
2323
<groupId>com.bitwarden</groupId>
2424
<artifactId>passwordless-android</artifactId>
25-
<version>1.0.1</version>
25+
<version>1.0.4</version>
2626
</dependency>
2727
```
2828

2929
@tab Gradle Kotlin DSL
3030

3131
```kotlin
32-
implementation("com.bitwarden:passwordless-android:1.0.1")
32+
implementation("com.bitwarden:passwordless-android:1.0.4")
3333
```
3434

3535
@tab Gradle Groovy DSL
3636

3737
```groovy
38-
implementation 'com.bitwarden:passwordless-android:1.0.1'
38+
implementation 'com.bitwarden:passwordless-android:1.0.4'
3939
```
4040

4141
:::
4242

4343
## Permissions
4444

45-
In your `AndroidManifest.xml`, add the following permissions:
45+
When the library has been added to your app, the following permission will be added to your `AndroidManifest.xml` automatically when the app is being built.
46+
47+
It is not necessary for you to add the following permission.
4648

4749
```xml
4850
<uses-permission android:name="android.permission.INTERNET" />

0 commit comments

Comments
 (0)