-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
27 lines (24 loc) · 865 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
maven { url 'https://oss.sonatype.org/content/repositories/staging' }
}
dependencies {
classpath 'com.jrummyapps:android-shell:1.0.0'
classpath 'com.android.tools.build:gradle:8.1.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.10"
}
}
allprojects {
repositories {
google()
mavenCentral()
//jcenter()
maven { url 'https://oss.sonatype.org/content/repositories/staging' }
maven { url "https://maven.google.com" } // Agrega este repositorio
maven { url 'https://repo.example.com' }
maven {url 'https://oss.sonatype.org/content/repositories/ksoap2-android-releases/'}
}
}