1 Star 0 Fork 33

Tanyong/WXDynamicPlugin

forked from wgllss/WXDynamicPlugin 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.gradle 1.73 KB
一键复制 编辑 原始数据 按行查看 历史
wgllss 提交于 2024-04-11 17:15 . 示例写法
buildscript {
ext.kotlin_version = '1.7.0'
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
maven { url 'https://repo1.maven.org/maven2/' }
maven { url 'https://s01.oss.sonatype.org/content/repositories/releases/' }
}
dependencies {
classpath "com.android.tools.build:gradle:4.2.1"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.19'
}
}
ext {
kotlin_version = "1.7.0"
compileSdkVersion = 33
buildToolsVersion = "30.0.3"
minSdkVersion = 24
targetSdkVersion = 33
libSupportAppcompat = 'androidx.appcompat:appcompat:1.3.0'
libSupportRecyclerView = 'androidx.recyclerview:recyclerview:1.1.0'
libSupportdesign = 'com.google.android.material:material:1.5.0-alpha05'
constraintlayout = 'androidx.constraintlayout:constraintlayout:2.0.1'
activity_ktx = 'androidx.activity:activity-ktx:1.7.0'
fragment_ktx = 'androidx.fragment:fragment-ktx:1.3.0'
def inputSteam = project.rootProject.file('local.properties').newDataInputStream()
def properties = new Properties()
properties.load(inputSteam)
workingDirPath = properties.getProperty('workingDirPath')
}
allprojects {
repositories {
google()
mavenCentral()
jcenter() // Warning: this repository is going to shut down soon
maven { url 'https://jitpack.io' }
// maven { url uri('../WXDynamicMusic/WX-Groovy-Plugin/repo') }
maven { url 'https://repo1.maven.org/maven2/' }
maven { url 'https://s01.oss.sonatype.org/content/repositories/releases/' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Android
1
https://gitee.com/ty_web/WXDynamicPlugin.git
git@gitee.com:ty_web/WXDynamicPlugin.git
ty_web
WXDynamicPlugin
WXDynamicPlugin
master

搜索帮助