1 Star 0 Fork 0

codeceo/Uniplugin-hello-as

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build.gradle 1.64 KB
一键复制 编辑 原始数据 按行查看 历史
codeceo 提交于 2024-11-26 14:05 +08:00 . test
// Top-level build file where you can add configuration options common to all sub-projects/modules.
//buildscript {
//
// repositories {
// google()
// jcenter()
// }
// dependencies {
// classpath 'com.android.tools.build:gradle:8.2.2'
// classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.0'
//
//
// // NOTE: Do not place your application dependencies here; they belong
// // in the individual module build.gradle files
// }
//}
//allprojects {
// repositories {
// google()
// jcenter()
// maven { url = uri("https://jitpack.io") }
// }
//}
//
//task clean(type: Delete) {
// delete rootProject.buildDir
//}
buildscript {
// 定义全局变量,常用于版本管理
// 变量在子模块的build.gradle中直接以: $NAME 的形式调用
ext {
kotlinVersion = '1.9.0'
fat_aar_version = '1.3.8'
}
repositories {
mavenCentral()
google()
jcenter()
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
//classpath "com.github.kezong:fat-aar:${fat_aar_version}"
}
}
// Top-level build file where you can add configuration options common to all sub-projects/modules.
//plugins用于在项目中应用特定的插件。
plugins {
id 'com.android.application' version '7.3.0' apply false
id 'com.android.library' version '7.3.0' apply false
id 'org.jetbrains.kotlin.android' version "1.9.0" apply false
}
//// 定义清理build目录的对应方法
task clean(type: Delete) {
delete rootProject.buildDir
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/codeceo_net/uniplugin-hello-as.git
git@gitee.com:codeceo_net/uniplugin-hello-as.git
codeceo_net
uniplugin-hello-as
Uniplugin-hello-as
master

搜索帮助