Repo created
This commit is contained in:
parent
e09986deae
commit
fa69fd81a1
48 changed files with 5156 additions and 0 deletions
27
build.gradle
Normal file
27
build.gradle
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
buildscript {
|
||||
repositories {
|
||||
if (project.hasProperty('MAVEN_REPO')) {
|
||||
maven { url MAVEN_REPO }
|
||||
} else {
|
||||
maven { url "file://${System.properties['user.home']}/MAVEN" }
|
||||
}
|
||||
google()
|
||||
mavenCentral()
|
||||
}
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:8.5.2'
|
||||
}
|
||||
}
|
||||
|
||||
allprojects {
|
||||
repositories {
|
||||
if (project.hasProperty('MAVEN_REPO')) {
|
||||
maven { url MAVEN_REPO }
|
||||
} else {
|
||||
maven { url "file://${System.properties['user.home']}/MAVEN" }
|
||||
}
|
||||
maven { url 'https://maven.ghostscript.com/' }
|
||||
google()
|
||||
mavenCentral()
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue