|
@@ -1,11 +1,13 @@
|
|
|
apply plugin: 'com.android.library'
|
|
|
+apply from: rootProject.projectDir.absolutePath + "/VideoGradle/video.gradle"
|
|
|
+
|
|
|
|
|
|
android {
|
|
|
- compileSdkVersion 29
|
|
|
- buildToolsVersion '29.0.0'
|
|
|
+ compileSdkVersion project.ext.androidCompileSdkVersion
|
|
|
+ buildToolsVersion project.ext.androidBuildToolsVersion
|
|
|
defaultConfig {
|
|
|
- minSdkVersion 17
|
|
|
- targetSdkVersion 29
|
|
|
+ minSdkVersion project.ext.androidMinSdkVersion
|
|
|
+ targetSdkVersion project.ext.androidTargetSdkVersion
|
|
|
versionCode 35
|
|
|
versionName "3.0.5"
|
|
|
}
|
|
@@ -20,7 +22,7 @@ android {
|
|
|
|
|
|
dependencies {
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
- implementation 'androidx.appcompat:appcompat:1.2.0'
|
|
|
+ implementation project.ext.AppDependencies['appcompat']
|
|
|
}
|
|
|
|
|
|
/** 以下开始是将Android Library上传到jcenter的相关配置**/
|