Skip to content

Commit e522afd

Browse files
committed
Fixed an MP4 audio export issue caused by new R8 defaults
1 parent 203f586 commit e522afd

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

MediaPhone/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ android {
66
compileSdkVersion 33
77

88
def getVersionCode = { ->
9-
return 53
9+
return 54
1010
}
1111

1212
defaultConfig {
@@ -19,7 +19,7 @@ android {
1919
targetSdkVersion 33
2020
minSdkVersion 14
2121
versionCode getVersionCode()
22-
versionName '1.7.1'
22+
versionName '1.7.2'
2323
// versionNameSuffix = '-beta-1'
2424
resourceConfigurations += ['en', 'es', 'fr', 'nl', 'pt', 'pl', 'ru']
2525
}
@@ -65,9 +65,9 @@ android {
6565
dependencies {
6666
implementation project(':MediaUtilities')
6767

68-
implementation 'com.google.android.material:material:1.8.0' // for overall UI appearance
68+
implementation 'com.google.android.material:material:1.9.0' // for overall UI appearance
6969
implementation 'androidx.exifinterface:exifinterface:1.3.6' // for auto-selection of export resolution
70-
implementation 'androidx.core:core:1.10.0' // for FileProvider
70+
implementation 'androidx.core:core:1.10.1' // for FileProvider
7171
implementation 'androidx.documentfile:documentfile:1.0.1' // for Storage Access Framework
7272

7373
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'

MediaUtilities

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- Fixed an issue that could cause MP4 export to fail with certain audio configurations

gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ android.useAndroidX=true
33
android.defaults.buildfeatures.buildconfig=true
44
android.nonFinalResIds=false
55
android.nonTransitiveRClass=false
6+
android.enableR8.fullMode=false
67
org.gradle.unsafe.configuration-cache=true

0 commit comments

Comments
 (0)