mirror of
https://github.com/samsonjs/media.git
synced 2026-03-25 09:25:53 +00:00
Use project.ext.minSdkVersion everywhere
This commit is contained in:
parent
4fc66f42d6
commit
64eedceb8c
5 changed files with 5 additions and 5 deletions
|
|
@ -32,7 +32,7 @@ android {
|
|||
defaultConfig {
|
||||
versionName project.ext.releaseVersion
|
||||
versionCode project.ext.releaseVersionCode
|
||||
minSdkVersion 21
|
||||
minSdkVersion project.ext.minSdkVersion
|
||||
targetSdkVersion project.ext.appTargetSdkVersion
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ android {
|
|||
defaultConfig {
|
||||
versionName project.ext.releaseVersion
|
||||
versionCode project.ext.releaseVersionCode
|
||||
minSdkVersion 21
|
||||
minSdkVersion project.ext.minSdkVersion
|
||||
targetSdkVersion project.ext.appTargetSdkVersion
|
||||
multiDexEnabled true
|
||||
}
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ android {
|
|||
defaultConfig {
|
||||
versionName project.ext.releaseVersion
|
||||
versionCode project.ext.releaseVersionCode
|
||||
minSdkVersion 21
|
||||
minSdkVersion project.ext.minSdkVersion
|
||||
targetSdkVersion project.ext.appTargetSdkVersion
|
||||
multiDexEnabled true
|
||||
}
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ apply from: "$gradle.ext.androidxMediaSettingsDir/common_library_config.gradle"
|
|||
android {
|
||||
namespace 'androidx.media3.datasource.okhttp'
|
||||
|
||||
defaultConfig.minSdkVersion 21
|
||||
defaultConfig.minSdkVersion project.ext.minSdkVersion
|
||||
|
||||
publishing {
|
||||
singleVariant('release') {
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ android {
|
|||
namespace 'androidx.media3.transformer'
|
||||
|
||||
defaultConfig {
|
||||
minSdkVersion 21
|
||||
minSdkVersion project.ext.minSdkVersion
|
||||
// The following argument makes the Android Test Orchestrator run its
|
||||
// "pm clear" command after each test invocation. This command ensures
|
||||
// that the app's state is completely cleared between tests.
|
||||
|
|
|
|||
Loading…
Reference in a new issue