Skip to content

Commit

Permalink
Changed applicationId order into FronteggApp.init
Browse files Browse the repository at this point in the history
  • Loading branch information
“oleksii-minaiev” committed Jul 22, 2024
1 parent edb1520 commit 4d0a46b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion android/src/main/java/com/frontegg/android/FronteggApp.kt
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ class FronteggApp private constructor(
public fun init(
fronteggDomain: String,
clientId: String,
applicationId: String? = null,
context: Context,
applicationId: String? = null,
useAssetsLinks: Boolean = false,
useChromeCustomTabs: Boolean = false
) {
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/com/frontegg/demo/App.kt
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ class App : Application() {
FronteggApp.init(
BuildConfig.FRONTEGG_DOMAIN,
BuildConfig.FRONTEGG_CLIENT_ID,
BuildConfig.FRONTEGG_APPLOCATION_ID,
this,
BuildConfig.FRONTEGG_APPLOCATION_ID,
)
}
}
2 changes: 1 addition & 1 deletion embedded/src/main/java/com/frontegg/demo/App.kt
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ class App : Application() {
FronteggApp.init(
BuildConfig.FRONTEGG_DOMAIN,
BuildConfig.FRONTEGG_CLIENT_ID,
BuildConfig.FRONTEGG_APPLICATION_ID,
this,
BuildConfig.FRONTEGG_APPLICATION_ID,
useAssetsLinks = true,
useChromeCustomTabs = true
)
Expand Down

0 comments on commit 4d0a46b

Please sign in to comment.