1 Star 0 Fork 1

yodadev/android_cmsv6demo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build.gradle 1.63 KB
一键复制 编辑 原始数据 按行查看 历史
dhy 提交于 2020-01-10 16:37 +08:00 . Initial commit
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.1'
}
}
apply plugin: 'com.android.application'
allprojects {
repositories {
google()
jcenter()
}
}
dependencies {
implementation fileTree(dir: 'libs', include: '*.jar')
}
android {
compileSdkVersion 28
buildToolsVersion "28.0.3"
defaultConfig {//默认配置
applicationId "com.cmsv6demo"//应用程序的包名
minSdkVersion 9//支持的最低版本
targetSdkVersion 28//支持的目标版本
versionCode 10001//版本号
versionName "1.0.1"//版本名
}
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
resources.srcDirs = ['src']
aidl.srcDirs = ['src']
renderscript.srcDirs = ['src']
res.srcDirs = ['res']
assets.srcDirs = ['assets']
jniLibs.srcDirs = ['libs']
}
// Move the tests to tests/java, tests/res, etc...
// instrumentTest.setRoot('tests')
// Move the build types to build-types/<type>
// For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
// This moves them out of them default location under src/<type>/... which would
// conflict with src/ being used by the main source set.
// Adding new build types or product flavors should be accompanied
// by a similar customization.
debug.setRoot('build-types/debug')
release.setRoot('build-types/release')
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yodadev/android_cmsv6demo.git
git@gitee.com:yodadev/android_cmsv6demo.git
yodadev
android_cmsv6demo
android_cmsv6demo
master

搜索帮助