Skip to content

Commit

Permalink
Crash issue fix and library version number increment from 1.0.1 to 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jagtapkiran committed Mar 31, 2023
1 parent 46adafa commit 10b1ed3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ class EventDataFactory(private val config: GumletInsightsConfig, private val use
if (sourceMetadata == null) config.videoId else sourceMetadata.videoId,
if (sourceMetadata == null) config.title else sourceMetadata.title,
if(config.userData != null) config.userData.customUserId else "",
if (sourceMetadata == null) config.customData.customData1 else sourceMetadata.customData1,
if (sourceMetadata == null) config.customData.customData2 else sourceMetadata.customData2,
if (sourceMetadata == null) config.customData.customData3 else sourceMetadata.customData3,
if (sourceMetadata == null) config.customData.customData4 else sourceMetadata.customData4,
if (sourceMetadata == null) config.customData.customData5 else sourceMetadata.customData5,
if (sourceMetadata == null) config.customData.customData6 else sourceMetadata.customData6,
if (sourceMetadata == null) config.customData.customData7 else sourceMetadata.customData7,
if (sourceMetadata == null) {if(config.customData != null && config.customData.customData1 != null) config.customData.customData1 else ""} else sourceMetadata.customData1,
if (sourceMetadata == null) {if(config.customData != null && config.customData.customData2 != null) config.customData.customData2 else ""} else sourceMetadata.customData2,
if (sourceMetadata == null) {if(config.customData != null && config.customData.customData3 != null) config.customData.customData3 else ""} else sourceMetadata.customData3,
if (sourceMetadata == null) {if(config.customData != null && config.customData.customData4 != null) config.customData.customData4 else ""} else sourceMetadata.customData4,
if (sourceMetadata == null) {if(config.customData != null && config.customData.customData5 != null) config.customData.customData5 else ""} else sourceMetadata.customData5,
if (sourceMetadata == null) {if(config.customData != null && config.customData.customData6 != null) config.customData.customData6 else ""} else sourceMetadata.customData6,
if (sourceMetadata == null) {if(config.customData != null && config.customData.customData7 != null) config.customData.customData7 else ""} else sourceMetadata.customData7,
if (sourceMetadata == null) config.path else sourceMetadata.path,
//if (sourceMetadata == null) config.experimentName else sourceMetadata.experimentName,
if (sourceMetadata == null) "" else "",
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ android.disableAutomaticComponentCreation=true

# Added POM Details for maven publish
GROUP=com.gumlet.gumlet-insights-sdk-exoplayer
VERSION_NAME=1.0.1
VERSION_NAME=1.0.2

POM_PACKAGING=aar
POM_INCEPTION_YEAR=2021
POM_INCEPTION_YEAR=2023
POM_URL=https://github.com/gumlet/gumlet-insights-sdk-exoplayer
POM_SCM_URL=https://github.com/gumlet/gumlet-insights-sdk-exoplayer
POM_SCM_CONNECTION=scm:git@github.com:gumlet/gumlet-insights-sdk-exoplayer.git
Expand Down

0 comments on commit 10b1ed3

Please sign in to comment.