Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/main/kotlin/com/mparticle/kits/AppboyKit.kt
Original file line number Diff line number Diff line change
Expand Up @@ -1076,6 +1076,11 @@ open class AppboyKit : KitIntegration(), AttributeListener, CommerceListener,
const val HOST = "host"
const val PUSH_ENABLED = "push_enabled"
const val NAME = "Appboy"
<<<<<<< Updated upstream
=======
// if this flag is true, kit will send Product name as sku
const val REPLACE_SKU_AS_PRODUCT_NAME = "replaceSkuWithProductName"
>>>>>>> Stashed changes
private const val PREF_KEY_HAS_SYNCED_ATTRIBUTES = "appboy::has_synced_attributes"
private const val PREF_KEY_CURRENT_EMAIL = "appboy::current_email"
private const val FLUSH_DELAY = 5000
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class MockKitManagerImpl(
CoreCallbacks::class.java
)
) {
Mockito.`when`(mCoreCallbacks.kitListener).thenReturn(KitListener.EMPTY)
Mockito.`when`(mCoreCallbacks.getKitListener()).thenReturn(KitListener.EMPTY)
}

@Throws(JSONException::class)
Expand Down
Loading