Commit 06da555 1 parent 682a5ca commit 06da555 Copy full SHA for 06da555
File tree 3 files changed +7
-2
lines changed
3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 39
39
` DEFAULT_TRACK_SELECTOR_PARAMETERS ` constants. Use
40
40
` getDefaultTrackSelectorParameters(Context) ` instead when possible, and
41
41
` DEFAULT_TRACK_SELECTOR_PARAMETERS_WITHOUT_CONTEXT ` otherwise.
42
+ * FFmpeg extension:
43
+ * Update CMake version to ` 3.21.0+ ` to avoid a CMake bug causing
44
+ AndroidStudio's gradle sync to fail
45
+ ([ #9933 ] ( https://github.com/google/ExoPlayer/issues/9933 ) ).
42
46
43
47
### 1.0.0-alpha03 (2022-03-14)
44
48
Original file line number Diff line number Diff line change @@ -17,7 +17,8 @@ apply from: "$gradle.ext.androidxMediaSettingsDir/common_library_config.gradle"
17
17
// failures if ffmpeg hasn't been built according to the README instructions.
18
18
if (project. file(' src/main/jni/ffmpeg' ). exists()) {
19
19
android. externalNativeBuild. cmake. path = ' src/main/jni/CMakeLists.txt'
20
- android. externalNativeBuild. cmake. version = ' 3.7.1+'
20
+ // Should match cmake_minimum_required.
21
+ android. externalNativeBuild. cmake. version = ' 3.21.0+'
21
22
}
22
23
23
24
dependencies {
Original file line number Diff line number Diff line change 14
14
# limitations under the License.
15
15
#
16
16
17
- cmake_minimum_required (VERSION 3.7.1 FATAL_ERROR)
17
+ cmake_minimum_required (VERSION 3.21.0 FATAL_ERROR)
18
18
19
19
# Enable C++11 features.
20
20
set (CMAKE_CXX_STANDARD 11)
You can’t perform that action at this time.
0 commit comments