Skip to content

Commit

Permalink
specify theme for RedirectUriReceiverActivity
Browse files Browse the repository at this point in the history
  • Loading branch information
MaikuB committed Aug 10, 2024
1 parent 5cdd1db commit 876d2f4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions flutter_appauth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## [7.0.0-dev.3]

* **Breaking change** all methods have now been made to return non-nullable types
* [Android] updated plugin to specify a theme for the `RedirectUriReceiverActivity` from the AppAuth Android SDK
* [iOS][macOS] bumped AppAuth iOS dependency to 1.7.5
* Updated API docs with more details
* Updated readme with more details on essential knowledge and links to OAuth 2.0 specifications
Expand Down
8 changes: 7 additions & 1 deletion flutter_appauth/android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="io.crossingthestreams.flutterappauth">
package="io.crossingthestreams.flutterappauth"
xmlns:tools="http://schemas.android.com/tools">
<application>
<activity android:name="net.openid.appauth.RedirectUriReceiverActivity"
android:theme="@style/Theme.AppCompat.Translucent.NoTitleBar"
tools:replace="android:theme" />
</application>
</manifest>

0 comments on commit 876d2f4

Please sign in to comment.