集成完直播后提交代码
This commit is contained in:
55
LiveInteractive/live_interactive_common/build.gradle
Normal file
55
LiveInteractive/live_interactive_common/build.gradle
Normal file
@@ -0,0 +1,55 @@
|
||||
import java.text.SimpleDateFormat
|
||||
|
||||
plugins {
|
||||
id 'com.android.library'
|
||||
}
|
||||
|
||||
android {
|
||||
compileSdkVersion androidCompileSdkVersion
|
||||
buildToolsVersion androidBuildToolsVersion
|
||||
|
||||
defaultConfig {
|
||||
minSdkVersion androidMinSdkVersion
|
||||
targetSdkVersion androidTargetSdkVersion
|
||||
versionCode 1
|
||||
versionName "1.0"
|
||||
|
||||
consumerProguardFiles "consumer-rules.pro"
|
||||
|
||||
javaCompileOptions {
|
||||
annotationProcessorOptions {
|
||||
arguments = [AROUTER_MODULE_NAME :'interactiveCommon' ]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
|
||||
release {
|
||||
minifyEnabled false
|
||||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||||
}
|
||||
}
|
||||
compileOptions {
|
||||
sourceCompatibility JavaVersion.VERSION_1_8
|
||||
targetCompatibility JavaVersion.VERSION_1_8
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation externalAndroidDesign
|
||||
|
||||
api project(':LiveCommon:live_commonbiz')
|
||||
api project(':LiveBeauty:live_queenbeauty')
|
||||
|
||||
if (project.hasProperty("sdk_type") && "AliVCSDK_InteractiveLive".equalsIgnoreCase(sdk_type)) {
|
||||
api externalLivePusherInteractive
|
||||
} else {
|
||||
api externalLivePusher
|
||||
}
|
||||
|
||||
implementation externalSimpleZXing
|
||||
implementation externalARouter
|
||||
annotationProcessor externalARouterCompiler
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user