nurse_lynx_pro/build.gradle
2025-02-20 10:49:24 +05:30

67 lines
1.8 KiB
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.6.0'
repositories {
google()
mavenCentral()
}
dependencies {
//classpath 'com.android.tools.build:gradle:4.1.3'
classpath 'com.android.tools.build:gradle:7.4.2'
//classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.32"
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21'
//classpath 'com.google.gms:google-services:4.3.8'
classpath 'com.google.gms:google-services:4.4.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.7.1'
}
}
allprojects {
repositories {
google()
mavenCentral()
maven {
url "https://github.com/jitsi/jitsi-maven-repository/raw/master/releases"
}
maven {
url "https://maven.google.com"
}
maven { url "https://jcenter.bintray.com"}
maven { url "https://www.jitpack.io" }
maven {
url "https://raw.githubusercontent.com/Snap-Kit/release-maven/repo"
}
maven{
url "https://repo1.maven.org/maven2/"
}
maven {
url "https://repo.spring.io/libs-release/"
}
maven { url 'https://jitpack.io' }
/* google()
mavenCentral()
maven { url "https://www.jitpack.io" }
maven {
url "https://github.com/jitsi/jitsi-maven-repository/raw/master/releases"
}
maven {
url "https://raw.githubusercontent.com/Snap-Kit/release-maven/repo"
}*/
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}