Skip to content

Commit

Permalink
Fixed an MP4 audio export issue caused by new R8 defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
simonrob committed May 16, 2023
1 parent 203f586 commit e522afd
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
8 changes: 4 additions & 4 deletions MediaPhone/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ android {
compileSdkVersion 33

def getVersionCode = { ->
return 53
return 54
}

defaultConfig {
Expand All @@ -19,7 +19,7 @@ android {
targetSdkVersion 33
minSdkVersion 14
versionCode getVersionCode()
versionName '1.7.1'
versionName '1.7.2'
// versionNameSuffix = '-beta-1'
resourceConfigurations += ['en', 'es', 'fr', 'nl', 'pt', 'pl', 'ru']
}
Expand Down Expand Up @@ -65,9 +65,9 @@ android {
dependencies {
implementation project(':MediaUtilities')

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

androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
Expand Down
2 changes: 1 addition & 1 deletion MediaUtilities
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/changelogs/54.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Fixed an issue that could cause MP4 export to fail with certain audio configurations
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ android.useAndroidX=true
android.defaults.buildfeatures.buildconfig=true
android.nonFinalResIds=false
android.nonTransitiveRClass=false
android.enableR8.fullMode=false
org.gradle.unsafe.configuration-cache=true

0 comments on commit e522afd

Please sign in to comment.