Skip to content

Commit 83ddf2d

Browse files
authored
Removed experimental tag from TWA (#818)
1 parent a9db8e1 commit 83ddf2d

File tree

2 files changed

+1
-10
lines changed

2 files changed

+1
-10
lines changed

README.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -290,11 +290,7 @@ The callback will get invoked when the user returns to your application. There a
290290

291291
If the `returnTo` URL is not found in the **Allowed Logout URLs** of your Auth0 Application, the server will not make the redirection and the browser will remain open.
292292

293-
### Trusted Web Activity (Experimental Release)
294-
295-
> **⚠️ Warning:** Trusted Web Activity support in Auth0.Android is still experimental and can change in the future.
296-
>
297-
> Please test it thoroughly in all the targeted browsers and OS variants and let us know your feedback.
293+
### Trusted Web Activity
298294

299295
Trusted Web Activity is a feature provided by some browsers to provide a native look and feel.
300296

auth0/src/main/java/com/auth0/android/provider/WebAuthProvider.kt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import android.os.Bundle
77
import android.util.Log
88
import androidx.annotation.VisibleForTesting
99
import com.auth0.android.Auth0
10-
import com.auth0.android.annotation.ExperimentalAuth0Api
1110
import com.auth0.android.authentication.AuthenticationException
1211
import com.auth0.android.callback.Callback
1312
import com.auth0.android.result.Credentials
@@ -210,9 +209,7 @@ public object WebAuthProvider {
210209
* Launches the Logout experience with a native feel (without address bar). For this to work,
211210
* you have to setup the app as trusted following the steps mentioned [here](https://github.com/auth0/Auth0.Android/blob/main/EXAMPLES.md#trusted-web-activity-experimental).
212211
*
213-
* This is still an experimental feature, test it thoroughly in the targeted devices and OS variants and let us know your feedback
214212
*/
215-
@ExperimentalAuth0Api
216213
public fun withTrustedWebActivity(): LogoutBuilder {
217214
launchAsTwa = true
218215
return this
@@ -504,9 +501,7 @@ public object WebAuthProvider {
504501
* Launches the Login experience with a native feel (without address bar). For this to work,
505502
* you have to setup the app as trusted following the steps mentioned [here](https://github.com/auth0/Auth0.Android/blob/main/EXAMPLES.md#trusted-web-activity-experimental).
506503
*
507-
* This is still an experimental feature, test it thoroughly in the targeted devices and OS variants and let us know your feedback
508504
*/
509-
@ExperimentalAuth0Api
510505
public fun withTrustedWebActivity(): Builder {
511506
launchAsTwa = true
512507
return this

0 commit comments

Comments
 (0)