Skip to content

Commit

Permalink
Fixes issue #60
Browse files Browse the repository at this point in the history
Makes it clear that the permission indicated in step 2 of the Android
tutorial, should be added to AndroidManifest.xml. Fixes
#60 .
  • Loading branch information
Alberto Güerere committed Nov 10, 2015
1 parent 1492af1 commit d7e36f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions articles/native-platforms/android.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ ${snippet(meta.snippets.dependencies)}

### 2. Configuring Auth0 Credentials & Callbacks

Add the `android.permission.INTERNET` permission:
Add the `android.permission.INTERNET` permission to `AndroidManifest.xml` inside the `<manifest>` tag:

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

Then add the following entries to `AndroidManifest.xml` inside the `<application>` tag:
Then add the following entries inside the `<application>` tag in the same file:

```xml
<!--Auth0 Lock-->
Expand Down

0 comments on commit d7e36f7

Please sign in to comment.