-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Askhar Aydarov <[email protected]>
- Loading branch information
Showing
33 changed files
with
1,122 additions
and
562 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,4 @@ | ||
buildscript { | ||
repositories { | ||
maven("build/maven") | ||
maven("https://dl.bintray.com/deepmedia/tools/") | ||
google() | ||
jcenter() | ||
} | ||
|
||
configurations.configureEach { | ||
resolutionStrategy.cacheChangingModulesFor(10, TimeUnit.SECONDS) | ||
} | ||
|
||
dependencies { | ||
classpath("io.deepmedia.tools:publisher:0.4.0") | ||
classpath("io.deepmedia.tools:grease:0.2.0") { | ||
isChanging = true | ||
} | ||
} | ||
} | ||
|
||
allprojects { | ||
repositories { | ||
mavenCentral() | ||
google() | ||
jcenter() | ||
} | ||
} | ||
|
||
tasks.register("clean", Delete::class) { | ||
delete(buildDir) | ||
} | ||
plugins { | ||
alias(libs.plugins.android.library) apply false | ||
alias(libs.plugins.kotlin.jvm) apply false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
[versions] | ||
agp = "8.1.4" | ||
asm-commons = "9.6" | ||
android-tools = "31.1.4" | ||
kotlin = "2.0.0" | ||
shadow = "8.3.0" | ||
publisher = "0.14.0" | ||
|
||
[libraries] | ||
asm-commons = { module = "org.ow2.asm:asm-commons", version.ref = "asm-commons" } | ||
gradle-android-common = { module = "com.android.tools:common", version.ref = "android-tools" } | ||
gradle-android-sdk-common = { module = "com.android.tools:sdk-common", version.ref = "android-tools" } | ||
gradle-android-layoutlib = { module = "com.android.tools.layoutlib:layoutlib-api", version.ref = "android-tools" } | ||
gradle-android-build = { module = "com.android.tools.build:gradle", version.ref = "agp" } | ||
gradle-shadow = { module = "com.gradleup.shadow:shadow-gradle-plugin", version.ref = "shadow" } | ||
|
||
[bundles] | ||
gradle-android = ["gradle-android-sdk-common", "gradle-android-build", "gradle-android-common", "gradle-android-layoutlib"] | ||
|
||
[plugins] | ||
kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" } | ||
publisher = { id = "io.deepmedia.tools.deployer", version.ref = "publisher" } | ||
android-library = { id = "com.android.library", version.ref = "agp" } |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
#Wed Mar 18 11:56:36 BRT 2020 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-all.zip | ||
networkTimeout=10000 | ||
validateDistributionUrl=true | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.6-all.zip |
Oops, something went wrong.