Files
super-app/build.gradle
Aman S 96541da3f4 TP-32582 | Shield sdk integration (#6860)
* TP-32582 | Shield sdk integration

* TP-32582 | moved to NaviSDKHelper.kt

* TP-32582 | sending  Device Results to clickstream

* TP-32582 | sending custom attributes  to shield sdk

* TP-32582 | added firebase check for sending custom attributes  to shield sdk

* TP-32582 | added referral code in custom attribute

* TP-32582 | fixed device detail response
2023-06-14 18:48:23 +00:00

91 lines
3.1 KiB
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
maven { url 'https://maven.fabric.io/public' }
maven { url 'https://plugins.gradle.org/m2/' }
maven {
url "https://maven.juspay.in/jp-build-packages/hypersdk-asset-download/releases/"
}
maven { url "https://finarkein.jfrog.io/artifactory/anubhav-maven" }
}
dependencies {
classpath 'com.android.tools.build:gradle:7.3.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21"
classpath 'com.google.gms:google-services:4.3.15'
classpath 'androidx.navigation:navigation-safe-args-gradle-plugin:2.4.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module adle files
// Add the Crashlytics Gradle plugin.
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.8.1'
classpath 'com.google.firebase:perf-plugin:1.4.1'
classpath 'com.google.dagger:hilt-android-gradle-plugin:2.44'
classpath 'in.juspay:hypersdk-asset-plugin:1.0.3'
classpath 'org.codehaus.groovy:groovy-json:3.0.7'
}
apply from: 'dependencies.gradle'
}
plugins {
id 'com.diffplug.spotless' version '6.11.0'
id 'org.jetbrains.kotlin.android' version '1.6.10' apply false
}
apply from: "$project.rootDir/spotless.gradle"
allprojects {
repositories {
google()
mavenCentral()
maven {
credentials {
username 'nexus-user'
password 'nexus-user'
}
url "https://nexus.cmd.navi-tech.in/repository/maven-snapshots"
}
maven {
credentials {
username 'nexus-user'
password 'nexus-user'
}
url "https://nexus.cmd.navi-tech.in/repository/maven-releases"
}
maven {
url "https://s3.ap-south-1.amazonaws.com/hvsdk/android/releases"
}
maven {
url "s3://okyc-navi-sdk.s3.amazonaws.com"
credentials(AwsCredentials) {
accessKey "AKIA325LPZPYF2PRBOVE"
secretKey "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"
}
}
maven {
url "https://phonepe.mycloudrepo.io/public/repositories/phonepe-intentsdk-android"
}
maven {
url "https://maven.juspay.in/jp-build-packages/hyper-sdk/"
}
maven { url "https://finarkein.jfrog.io/artifactory/anubhav-maven" }
maven {
url "https://cashshield-sdk.s3.amazonaws.com/release/"
}
// jitpack should be last repository
maven { url "https://jitpack.io" }
}
configurations.all {
resolutionStrategy {
// required by room and we cannot update room version as
// it may want us to change minSdkVersion
// https://issuetracker.google.com/issues/174695268?pli=1#comment10
force 'org.xerial:sqlite-jdbc:3.34.0'
}
}
}