Repo created

This commit is contained in:
Fr4nz D13trich 2025-11-22 13:51:39 +01:00
parent e09986deae
commit fa69fd81a1
48 changed files with 5156 additions and 0 deletions

27
build.gradle Normal file
View 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()
}
}