15 Star 43 Fork 7

egg90 / QuickPatch

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.gradle 1.16 KB
一键复制 编辑 原始数据 按行查看 历史
egg90 提交于 2018-08-23 01:56 . 更新README和一些细节修改
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
maven {
url uri('./gradleplugin/repos')
}
}
dependencies {
classpath 'quickpatch.gradleplugin:gradleplugin:1.0.0'
classpath 'com.android.tools.build:gradle:3.1.4'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
mavenCentral()
jcenter()
}
tasks.withType(JavaCompile) { options.encoding = "UTF-8" }
}
task clean(type: Delete) {
delete rootProject.buildDir
}
task assembleQuickPatchExample {
dependsOn "gradleplugin:uploadArchives"
dependsOn "app:assembleDebug"
tasks.findByPath('app:assembleDebug').mustRunAfter(tasks.findByPath('gradleplugin:uploadArchives'))
}
task installQuickPatchExample {
dependsOn "gradleplugin:uploadArchives"
dependsOn "app:installDebug"
tasks.findByPath('app:installDebug').mustRunAfter(tasks.findByPath('gradleplugin:uploadArchives'))
}
Android
1
https://gitee.com/egg90/QuickPatch.git
git@gitee.com:egg90/QuickPatch.git
egg90
QuickPatch
QuickPatch
master

搜索帮助