Skip to content

Commit f9f4774

Browse files
committed
Fix an export issue with spanning media items
1 parent 8a3e025 commit f9f4774

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

MediaPhone/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ android {
55
testNamespace namespace + '.test'
66
compileSdk 35
77

8-
def getVersionCode = { -> return 60 }
8+
def getVersionCode = { -> return 61 }
99

1010
defaultConfig {
1111
manifestPlaceholders.providerId = 'mediaphone'
@@ -17,7 +17,7 @@ android {
1717
targetSdkVersion 35
1818
minSdkVersion 14
1919
versionCode getVersionCode()
20-
versionName '1.7.7'
20+
versionName '1.7.8'
2121
// versionNameSuffix = '-beta-1'
2222
resourceConfigurations += ['en', 'es', 'fr', 'nl', 'pt', 'pl', 'ru']
2323
}

MediaPhone/src/main/java/ac/robinson/mediaphone/activity/AudioActivity.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020

2121
package ac.robinson.mediaphone.activity;
2222

23-
import android.annotation.TargetApi;
2423
import android.app.Activity;
2524
import android.content.ActivityNotFoundException;
2625
import android.content.ContentResolver;
@@ -165,8 +164,6 @@ public void onSaveInstanceState(Bundle savedInstanceState) {
165164
super.onSaveInstanceState(savedInstanceState);
166165
}
167166

168-
// @TargetApi(Build.VERSION_CODES.ICE_CREAM_SANDWICH_MR1) is for callOnClick()
169-
@TargetApi(Build.VERSION_CODES.ICE_CREAM_SANDWICH_MR1)
170167
@Override
171168
protected void onPause() {
172169
try {
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix an issue with export of narratives that use spanning media items.

0 commit comments

Comments
 (0)