Skip to content

Commit 8b20c72

Browse files
authored
Support Target SDK 33 (#472)
1 parent a108586 commit 8b20c72

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

examples/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ android {
1111
defaultConfig {
1212
applicationId "com.dropbox.core.examples.android"
1313
minSdkVersion 21
14-
targetSdkVersion 31
14+
targetSdkVersion 33
1515
versionCode 1
1616
versionName "1.0"
1717

examples/android/src/main/AndroidManifest.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,11 @@
3939
<category android:name="android.intent.category.BROWSABLE" />
4040
<category android:name="android.intent.category.DEFAULT" />
4141
</intent-filter>
42+
<!-- Additional intent-filter required as a workaround for Apps using targetSdk=33 until the fix in the Dropbox app is available to all users. https://github.com/dropbox/dropbox-sdk-java/issues/406 -->
43+
<intent-filter>
44+
<action android:name="android.intent.action.VIEW" />
45+
<category android:name="android.intent.category.DEFAULT" />
46+
</intent-filter>
4247
</activity>
4348
<activity
4449
android:name=".OpenWithActivity"

0 commit comments

Comments
 (0)