作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 ionic 应用程序和分支 SDK 的问题,在测试环境中,一切都按预期工作,但用户在 PROD 中不断崩溃。
正如分支文档中所述,我已经在 app.component.ts 中初始化了平台就绪事件的分支:
app.component.ts
import { Component } from "@angular/core";
import { Platform } from "ionic-angular";
import { StatusBar, Splashscreen } from "ionic-native";
import { TabsPage } from "../pages/tabs/tabs";
@Component({
template: `<ion-nav [root]="rootPage"></ion-nav>`
})
export class MyApp {
rootPage = TabsPage;
constructor(platform: Platform) {
platform.ready().then(() => {
StatusBar.styleDefault();
Splashscreen.hide();
branchInit();
});
platform.resume.subscribe(() => {
branchInit();
});
// Branch initialization
const branchInit = () => {
// only on devices
if (!platform.is("cordova")) {
return;
}
const Branch = window["Branch"];
Branch.initSession().then(data => {
if (data["+clicked_branch_link"]) {
// read deep link data on click
alert("Deep Link Data: " + JSON.stringify(data));
}
});
};
}
}
错误如下:
Unable to instantiate receiver io.branch.referral.InstallListener: java.lang.ClassNotFoundException: Didn't find class "io.branch.referral.InstallListener"
这是我的 ionic 信息
Ionic:
Ionic CLI : 5.4.15 (/Users/path/.nvm/versions/node/v9.6.0/lib/node_modules/ionic)
Ionic Framework : @ionic/angular 4.11.5
@angular-devkit/build-angular : 0.12.4
@angular-devkit/schematics : 7.2.4
@angular/cli : 7.2.4
@ionic/angular-toolkit : 1.3.0
Cordova:
Cordova CLI : 9.0.0 (cordova-lib@9.0.1)
Cordova Platforms : android 8.1.0
Cordova Plugins : cordova-plugin-ionic-keyboard 2.2.0, cordova-plugin-ionic-webview 4.1.1, (and 30 other plugins)
Utility:
cordova-res : not installed
native-run (update available: 0.3.0) : 0.2.7
System:
Android SDK Tools : 26.1.1 (/Users/path/Library/Android/sdk)
NodeJS : v9.6.0 (/Users/path/.nvm/versions/node/v9.6.0/bin/node)
npm : 2.15.12
OS : macOS High Sierra
Xcode : Xcode 10.1 Build version 10B61
最佳答案
我没有找到关于该问题的良好文档,我不确定删除该库是否会导致无法获得安装引荐来源网址,但经过一番调查后,我决定从 AndroidManifest.xml 中删除这些行
<receiver android:name="io.branch.referral.InstallListener" android:exported="true">
<intent-filter>
<action android:name="com.android.vending.INSTALL_REFERRER" />
</intent-filter>
</receiver>
以下链接讨论了分支机构发送的通信和过时的文档,并暗示了上述解决方案。
https://github.com/BranchMetrics/unity-branch-deep-linking-attribution/issues/171
关于ionic-framework - 找不到错误 io.branch.referral.InstallListener 类崩溃 Ionic v5,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60326010/
我收到 Branch Metrics 安装监听器的“导出的接收器不需要权限”警告。 上面的安装监听器功能齐全,但我不确定我是否可以安全地忽略这个警告消息。 我
我有一个 ionic 应用程序和分支 SDK 的问题,在测试环境中,一切都按预期工作,但用户在 PROD 中不断崩溃。 正如分支文档中所述,我已经在 app.component.ts 中初始化了平台就
我是一名优秀的程序员,十分优秀!