-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Auth0.Android to resolve CVE-2023-3635 (#660)
Co-authored-by: Evan Sims <[email protected]>
- Loading branch information
Showing
6 changed files
with
49 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
#Tue Jul 16 12:08:59 ART 2019 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.9.3-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-all.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:tools="http://schemas.android.com/tools" | ||
package="com.auth0.android.lock"> | ||
|
||
<uses-permission android:name="android.permission.INTERNET" /> | ||
|
||
<application> | ||
<!--Auth0 WebAuthProvider--> | ||
<activity | ||
android:name="com.auth0.android.provider.RedirectActivity" | ||
tools:node="remove"> | ||
</activity> | ||
<!--Auth0 WebAuthProvider End--> | ||
|
||
<!--Auth0 Lock--> | ||
<activity | ||
android:name="com.auth0.android.lock.LockActivity" | ||
tools:node="remove"/> | ||
<!--Auth0 Lock End--> | ||
|
||
<!--Auth0 PasswordlessLock--> | ||
<activity | ||
android:name="com.auth0.android.lock.PasswordlessLockActivity" | ||
tools:node="remove"> | ||
</activity> | ||
<!--Auth0 PasswordlessLock End--> | ||
|
||
<!--Auth0 Lock Passwordless SMS Country Code Selection--> | ||
<activity | ||
android:name="com.auth0.android.lock.CountryCodeActivity" | ||
tools:node="remove"/> | ||
<!--Auth0 Lock Passwordless SMS Country Code Selection--> | ||
</application> | ||
|
||
</manifest> |