We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3a8c652 + 9784609 commit 63f39bcCopy full SHA for 63f39bc
app/build.gradle
@@ -16,7 +16,7 @@ android {
16
defaultConfig {
17
applicationId "com.alicloud.databox.demo"
18
minSdk 24
19
- targetSdk 31
+ targetSdk 33
20
versionCode 1
21
versionName "1.0"
22
app/src/main/AndroidManifest.xml
@@ -42,6 +42,11 @@
42
android:exported="true"
43
android:launchMode="singleTask">
44
45
+ <!-- targetSdk >= 33 需要适配 intent-filter -->
46
+ <intent-filter>
47
+ <action android:name="android.intent.action.VIEW" />
48
+ </intent-filter>
49
+
50
<!-- H5授权回调 -->
51
<intent-filter>
52
<action android:name="android.intent.action.VIEW" />
0 commit comments