- exoplayer:2.15.0

- flexbox:3.0.0
- Android Gradle plugin 4.2.2
This commit is contained in:
tateisu 2021-08-24 07:46:09 +09:00
parent 8faba4f422
commit 9d3c36ea0c
4 changed files with 18 additions and 24 deletions

View File

@ -3,11 +3,6 @@
<component name="CompilerConfiguration">
<bytecodeTargetLevel target="1.8">
<module name="apng" target="1.7" />
<module name="SubwayTooter.apng_android" target="11" />
<module name="SubwayTooter.app" target="11" />
<module name="SubwayTooter.colorpicker" target="11" />
<module name="SubwayTooter.emoji" target="11" />
<module name="SubwayTooter.sample_apng" target="11" />
</bytecodeTargetLevel>
</component>
</project>

View File

@ -186,11 +186,11 @@ dependencies {
implementation 'org.hjson:hjson:3.0.0'
implementation 'com.google.android:flexbox:2.0.1' // 1.1.0 AndroidX
implementation 'com.google.android.flexbox:flexbox:3.0.0'
implementation 'com.astuetz:pagerslidingtabstrip:1.0.1'
implementation 'com.google.android.exoplayer:exoplayer:2.14.1'
implementation 'com.google.android.exoplayer:exoplayer:2.15.0'
/*
WARNING: [Processor] Library '…\exoplayer-ui-2.12.0.aar' contains references to both AndroidX and old support library. This seems like the library is partially migrated. Jetifier will try to rewrite the library anyway.
Example of androidX reference: 'androidx/core/app/NotificationCompat$Builder'

View File

@ -21,7 +21,7 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:4.2.1'
classpath 'com.android.tools.build:gradle:4.2.2'
classpath 'com.google.gms:google-services:4.3.8'
//noinspection DifferentKotlinGradleVersion

View File

@ -1,31 +1,30 @@
apply plugin: 'com.android.library'
android {
compileSdkVersion compile_sdk_version
compileSdkVersion compile_sdk_version
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
defaultConfig {
targetSdkVersion target_sdk_version
minSdkVersion min_sdk_version
}
defaultConfig {
targetSdkVersion target_sdk_version
minSdkVersion min_sdk_version
}
lintOptions {
abortOnError false
}
lintOptions {
abortOnError false
}
resourcePrefix "cpv_"
resourcePrefix "cpv_"
}
dependencies {
implementation "androidx.appcompat:appcompat:$appcompat_version"
implementation 'com.google.android:flexbox:2.0.1'
implementation "androidx.appcompat:appcompat:$appcompat_version"
implementation 'com.google.android.flexbox:flexbox:3.0.0'
}
//apply plugin: 'com.getkeepsafe.dexcount'