You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -70,7 +70,7 @@ android {
70
70
}
71
71
```
72
72
73
-
The next step is to create an instance of `Auth0` with your application's information. The easiest way to create it is by using the values defined previously in the `string.xml` file and passing an Android Context. For this to work, you must have defined the string resources using the same keys as listed above.
73
+
The next step is to create an instance of `Auth0` with your application's information. The easiest way to create it is by using the values defined previously in the `strings.xml` file and passing an Android Context. For this to work, you must have defined the string resources using the same keys as listed above.
74
74
75
75
```kotlin
76
76
val account =Auth0(context)
@@ -111,7 +111,7 @@ Next, add the `LockActivity` inside the `application` tag:
111
111
Make sure the Activity's `launchMode` is declared as `singleTask` or the authentication result won't come back into your application.
112
112
113
113
114
-
Then, in any of your Activities, you need to initialize **Lock** and handle the release of its resources appropriately after you're doing using it.
114
+
Then, in any of your Activities, you need to initialize **Lock** and handle the release of its resources appropriately after you're done using it.
115
115
116
116
```kotlin
117
117
// This activity will show Lock
@@ -295,4 +295,4 @@ If you have found a bug or if you have a feature request, please report them at
295
295
296
296
## License
297
297
298
-
This project is licensed under the MIT license. See the [LICENSE](LICENSE.md) file for more info.
298
+
This project is licensed under the MIT license. See the [LICENSE](LICENSE.md) file for more info.
0 commit comments