Skip to content

Commit

Permalink
- Updated launchMode from singleInstance to singleTop
Browse files Browse the repository at this point in the history
- Updated version libraries
- Added eventSource into NamWebPageSettings class, when creating the SeatUpgradesModule.
  • Loading branch information
luism-burgos committed Feb 15, 2024
1 parent 31ed584 commit 62a043a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ dependencies {
implementation 'androidx.compose.material:material:1.4.3'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4'
//Tickets SDK
implementation 'com.ticketmaster.tickets:secure-entry:1.2.8'
implementation 'com.ticketmaster.tickets:tickets:3.3.1'
implementation 'com.ticketmaster.tickets:secure-entry:1.2.9'
implementation 'com.ticketmaster.tickets:tickets:3.4.1'
//Accounts SDK
implementation 'com.ticketmaster.accounts:authentication:3.3.1'
implementation 'com.ticketmaster.accounts:authentication:3.4.0'
// Retail SDK
implementation "com.ticketmaster.retail:purchase:1.1.3"
implementation "com.ticketmaster.retail:prepurchase:1.0.8"
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<activity
android:name="com.ticketmaster.authenticationsdk.internal.modernaccounts.presentation.ModernAccountsLoginScreen"
android:exported="true"
android:launchMode="singleInstance"
android:launchMode="singleTop"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ class TicketsSdkHostActivity : AppCompatActivity() {
modules.add(
SeatUpgradesModule(
context = this@TicketsSdkHostActivity,
webPageSettings = NAMWebPageSettings(this@TicketsSdkHostActivity),
webPageSettings = NAMWebPageSettings(this@TicketsSdkHostActivity, order.tickets[0].eventSource),
eventId = order.eventId
).build()
)
Expand Down

0 comments on commit 62a043a

Please sign in to comment.