67 lines
2.0 KiB
Groovy
67 lines
2.0 KiB
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
ext.kotlin_version = '1.5.21'
|
|
ext.room_version = '2.3.0'
|
|
ext.work_version = '2.5.0'
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
maven { url 'https://maven.fabric.io/public' }
|
|
maven { url 'https://plugins.gradle.org/m2/' }
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:4.1.2'
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
classpath 'com.google.gms:google-services:4.3.3'
|
|
// 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.4.1'
|
|
classpath 'com.google.firebase:perf-plugin:1.3.4'
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
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 "s3://hvsdk/android/releases"
|
|
credentials(AwsCredentials) {
|
|
accessKey "AKIAXB3KY4F5AQJD6WHT"
|
|
secretKey "P712oWvsVZzVqHd4n27Wh46+4StF8gctCZi/wLBc"
|
|
}
|
|
}
|
|
maven { url 'http://maven.singular.net/' }
|
|
maven {
|
|
url "s3://okyc-navi-sdk.s3.amazonaws.com"
|
|
credentials(AwsCredentials) {
|
|
accessKey "AKIA325LPZPYF2PRBOVE"
|
|
secretKey "U39PUBib1LoKtyamr58pTvUn2suRb6/if3yp0BLo"
|
|
}
|
|
}
|
|
maven { url "https://jitpack.io" }
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|