Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
94a5d70
feat(analytics): Adding events capturing through new RCTBridgeModule
dporwal-shipit Jul 29, 2025
75bd9c3
feat(analytics): Adding events capturing through new RCTBridgeModule
dporwal-shipit Jul 29, 2025
0fc855d
feature(analytics): working state
dporwal-shipit Jul 30, 2025
4eb3933
feature(analytics): updated code to capture events.
dporwal-shipit Aug 5, 2025
0e0091a
feature(analytics): updated code to capture events.
dporwal-shipit Aug 5, 2025
44ad07b
feat(analytics):- remove Mixpanel from SCLoans and substitute with ne…
dporwal-shipit Aug 8, 2025
2a2b64d
app building
dporwal-shipit Aug 11, 2025
f82d8c1
developing android event flow
dporwal-shipit Aug 12, 2025
2a319f7
feature(analytics): working state android and ios scgateway emitters
dporwal-shipit Aug 12, 2025
08de62a
feature(analytics): Working state android scloans events incoming
dporwal-shipit Aug 18, 2025
42eb202
feature(analytics): working state ios events emission-capturing
dporwal-shipit Aug 26, 2025
ca7ed39
feature(analytics): working state android events emission-capturing
dporwal-shipit Aug 26, 2025
8008365
refactor(analytics): restructure event bridging logic for improved ma…
dporwal-shipit Aug 30, 2025
767a0c2
refactor(analytics): restructure loans event bridging logic for impro…
dporwal-shipit Aug 31, 2025
46d9821
feature(analytics): making changes as requested in PR reviews
dporwal-shipit Sep 4, 2025
3691d60
feature(analytics): making changes as per PR request reviews
dporwal-shipit Sep 5, 2025
9ee02e7
feature(analytics): making changes as per PR request reviews
dporwal-shipit Sep 5, 2025
2b62d03
refactor(SCGatewayEvents): streamline initialization and subscription…
indrajit-roy-sc Sep 5, 2025
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
13 changes: 10 additions & 3 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ buildscript {
}

dependencies {
//noinspection GradlePluginVersion
classpath 'com.android.tools.build:gradle:3.5.3'
// noinspection DifferentKotlinGradleVersion
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
Expand Down Expand Up @@ -57,6 +58,12 @@ android {
}
}

// Ensure React Native Android sources are locatable when opening this library standalone
if (!rootProject.ext.has('reactNativeAndroidRoot')) {
// Absolute or relative path to the app's RN Android directory
rootProject.ext.reactNativeAndroidRoot = file('../../smart_investing_react_native/node_modules/react-native/android')
}

repositories {
mavenCentral()
google()
Expand All @@ -69,7 +76,7 @@ repositories {
password "reactNativeUser123"
}
}

maven {
url "https://artifactory.smallcase.com/artifactory/SCGateway-internal"
credentials {
Expand Down Expand Up @@ -149,8 +156,8 @@ def kotlin_version = getExtOrDefault('kotlinVersion')
dependencies {
//noinspection GradleDynamicVersion
implementation 'com.facebook.react:react-native:+' // From node_modules
implementation 'com.smallcase.gateway:sdk:4.2.2'
implementation 'com.smallcase.loans:sdk:3.1.1'
implementation 'com.smallcase.gateway:sdk-sdk-extract-mixpanel-from-sdk:4.2.2-3183-release'
implementation 'com.smallcase.loans:sdk-sdk-extract-mixpanel-from-sdk:3.1.1-72-release'
Comment on lines +159 to +160

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please check the versions. This is probably local-device maven version numbers.

implementation "androidx.core:core-ktx:1.3.1"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
}
Expand Down
Loading