Skip to content

Commit 419e187

Browse files
committed
merge with upstream, ext doc dialog 3
1 parent 16f4965 commit 419e187

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ android {
1010
multiDexEnabled true
1111
// When new version released, version code must be incremented at least by 8
1212
// for compatibility with ABI versioning of split apk (see below).
13-
versionCode 32380
14-
versionName "3.2.38-1"
13+
versionCode 32390
14+
versionName "3.2.39-1"
1515
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1616
externalNativeBuild {
1717
cmake {

android/app/libs/OpenDocument.jar

158 KB
Binary file not shown.

android/app/libs/commons.jar

393 KB
Binary file not shown.

android/app/src/main/AndroidManifest.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -493,6 +493,7 @@
493493

494494
<data android:host="*" android:scheme="file" />
495495
<data android:host="*" android:scheme="content" />
496+
<data android:host="*" android:scheme="http" />
496497

497498
<data android:pathPattern="/.*\\.txt" />
498499
<data android:pathPattern="/.*\\..*\\.txt" />
@@ -518,6 +519,13 @@
518519
<data android:scheme="content" />
519520
<data android:mimeType="text/plain" />
520521
</intent-filter>
522+
<intent-filter>
523+
<action android:name="android.intent.action.VIEW" />
524+
<category android:name="android.intent.category.DEFAULT" />
525+
<category android:name="android.intent.category.BROWSABLE" />
526+
<data android:host="*" android:scheme="http"/>
527+
<data android:mimeType="text/plain" />
528+
</intent-filter>
521529
</activity-alias>
522530
<!-- alias activity to disable HTML -->
523531
<activity-alias

0 commit comments

Comments
 (0)