Files
mendian/demo_component_a/build.gradle

37 lines
1.0 KiB
Groovy
Raw Normal View History

2025-12-26 15:36:42 +08:00
//apply from: 'https://raw.githubusercontent.com/luckybilly/CC/master/cc-settings-2.gradle'
//修改CC框架代码进行本地测试时使用下面的文件
apply from: rootProject.file('cc-settings-2.gradle')
android {
namespace 'com.billy.cc.demo.component.a'
compileSdk rootProject.compileVersion
compileSdkVersion rootProject.compileVersion
buildToolsVersion rootProject.buildVersion
defaultConfig {
minSdkVersion rootProject.ext.android.minSdkVersion
targetSdkVersion rootProject.ext.android.targetSdkVersion
versionCode 1
versionName "1.0"
if (project.ext.runAsApp) {
applicationId 'com.billy.cc.demo.component.a'
}
versionCode 1
versionName "1.0"
}
resourcePrefix "demo_a_"
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation project(path: ':base')
}