spike done

This commit is contained in:
satish_p
2021-03-25 15:27:30 +05:30
parent a5f29bb05f
commit 26166a5ea9
7 changed files with 22 additions and 1 deletions

1
.gitignore vendored
View File

@@ -17,3 +17,4 @@
vcs.xml
digio-kyc-1.0.13/build
digio-esign-v2.8.0/build
neoeyed-sdk-stage-3.0.0/build/

View File

@@ -370,6 +370,10 @@ dependencies {
debugImplementation 'com.navi.insurance:android.sdk-debug:1.1.4'
releaseImplementation 'com.navi.insurance:android.sdk-release:1.1.4'
implementation 'com.android.support:support-annotations:28.0.0'
implementation project(":neoeyed-sdk-stage-3.0.0")
}
task executeTestsOnBrowserStack {

Binary file not shown.

View File

@@ -37,6 +37,9 @@ import com.naviapp.sharedpref.PreferenceManager
import com.naviapp.utils.*
import io.branch.referral.Branch
import com.neoeyed.sdk.neoEYED
class SplashActivity : BaseActivity() {
private lateinit var binding: ActivitySplashScreenBinding
@@ -67,11 +70,21 @@ class SplashActivity : BaseActivity() {
initObservers()
loginSettings()
goToNextScreenAfterDelay()
neoEYED.init(this, null)
neoEYED.a
}
private fun uploadAnalyticsData() {
if (!intent.getStringExtra(Constants.MESSAGE_ID).isNullOrEmpty()) {
configVM.uploadAnalyticsData(PushNotificationData(messageId = intent.getStringExtra(Constants.MESSAGE_ID), status = Constants.CLICKED, timeStamp = System.currentTimeMillis().toString()))
configVM.uploadAnalyticsData(
PushNotificationData(
messageId = intent.getStringExtra(
Constants.MESSAGE_ID
), status = Constants.CLICKED, timeStamp = System.currentTimeMillis().toString()
)
)
}
}

View File

@@ -0,0 +1,2 @@
configurations.maybeCreate("default")
artifacts.add("default", file('neoeyed-sdk-stage-3.0.0.aar'))

Binary file not shown.

View File

@@ -1,2 +1,3 @@
include ':neoeyed-sdk-stage-3.0.0'
include ':app', ':digio-esign-v2.8.0', ':digio-kyc-1.0.13'
rootProject.name='android-customer-app'