我们正准备发布我们的即时应用,但是,在Google Play的AIA开发轨道中运行我们的AIA应用时,我们遇到了一个问题。
我们的AIA应用程序可以在Android Studio中完美运行,但尝试在Play商店中运行真实设备时会出现此问题
任何帮助表示赞赏。
有问题:
java.lang.SecurityException: Not allowed to start activity Intent { act=android.intent.action.VIEW cat=[android.intent.category.BROWSABLE] dat=https://www.example.com/... pkg=com.example (has extras) }
我们的AIA设置为运行ACTION_VIEW
Intent以打开应用程序其他功能中列出的活动,非常类似于Google提供的示例。
当我们的应用程序通过URL打开时,它将被发送到我们的基本功能中的路由器活动来处理解析URI并打开正确的活动来处理URL路径。
基本功能清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.rentpath.lib">
<application>
<activity
android:name=".activity.UrlRouterActivity"
android:noHistory="true"
android:launchMode="singleInstance"
android:theme="@style/Theme.AppCompat.NoDisplay">
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http" />
<data android:scheme="https" />
<data android:host="www.example.com" />
<data android:pathPrefix="/path" />
</intent-filter>
</activity>
</application>
</manifest>
Feature 1 Manifest:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.rentpath.lib.pdp">
<application>
<activity
android:name=".activity.Feature1Activity"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="@string/filter_scheme_secure" /> <!-- String resource for https -->
<data android:host="www.example.com" />
<data android:pathPrefix="/action_feature_1" />
</intent-filter>
<intent-filter>
<action android:name="action_feature_1"/>
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
</manifest>
我们的路由器Activity获取URI,解构URL参数并构建一个Intent,如下所示:
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("https:www.example.com/action_feature_1?some_param=some_value"));
intent.addCategory(Intent.CATEGORY_BROWSABLE);
intent.setPackage(context.getPackageName());
startActivity(intent);
启动此活动会导致顶部提到的例外 同样,这仅在从Google Play的开发轨道运行AIA应用程序时发生 从Android Studio运行AIA应用程序时不会发生此事。
其他信息:
Android Studio 3.0 Beta 2
Gradle plugin: 3.0.0-beta2
Gradle wrapper distribution: 4.1-rc-1
答案 0 :(得分:1)
事实证明,当从Google Play运行AIA应用时,字符串引用不能很好地与清单一起使用。在方案上明确设置字符串值可以解决问题。
更换
<data android:scheme="@string/filter_scheme_secure" />
带
<data android:scheme="https" />
解决了这个问题。
答案 1 :(得分:1)
作为参考,data
属性不能是资源,只能是字符串
https://developer.android.com/guide/topics/manifest/data-element.html
与服务标签相比,服务标签列出了一些可以是字符串资源的属性。 (标签)
https://developer.android.com/guide/topics/manifest/service-element.html
我能想到的主要原因是标签可以是不同的语言,并在运行时更改。 URI方案没有很多选项,并且在应用程序生存期内它们没有变化