IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 移动开发 -> AppMetrica 集成指南和注意事项 -> 正文阅读

[移动开发]AppMetrica 集成指南和注意事项

集成:

1:在build.gradle文件中添加以下依赖?项:

dependencies {

????// AppMetrica SDK.
????implementation?'com.yandex.android:mobmetricalib:3.21.0'

}

2:从基类声明派生类并按如下Application方式覆盖该方法onCreate()

public?class?MyApp?extends?Application?{

????@Override
????public?void?onCreate()?{

????????super.onCreate();

????????// Creating an extended library configuration.
????????YandexMetricaConfig config = YandexMetricaConfig.newConfigBuilder(API_key).build();
????????// Initializing the AppMetrica SDK.
????????YandexMetrica.activate(getApplicationContext(), config);
????????// Automatic tracking of user activity.
????????YandexMetrica.enableActivityAutoTracking(this);

????}

}

基本统计功能到这里就集成完毕了。接下来是

可选配置:

1.位置检测配置:

默认情况下,AppMetrica 通过 IP 地址确定设备的位置,并具有特定于国家/地区的精度。

想要获取准确到城市的位置,请在AndroidManifest.xml文件中添加定位权限:

<manifest>
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
    <application>...</application>
</manifest>

2.会话超时的时长配置,默认时间是10秒:

// Creating an extended library configuration.
YandexMetricaConfig config = YandexMetricaConfig.newConfigBuilder(API_key)
        // Setting the length of the session timeout.
        .withSessionTimeout(15)
        .build();
// Initializing the AppMetrica SDK.
YandexMetrica.activate(getApplicationContext(), config);

3.跟踪应用程序崩溃,默认开启,可选择性关闭:

// Creating an extended library configuration.
YandexMetricaConfig config = YandexMetricaConfig.newConfigBuilder(API_key)
        // Disabling the data sending about the app crashes.
        .withCrashReporting(false)
        .build();
// Initializing the AppMetrica SDK.
YandexMetrica.activate(getApplicationContext(), config);

4.启用/禁用日志记录:

// Creating an extended library configuration.
YandexMetricaConfig config = YandexMetricaConfig.newConfigBuilder(API_key)
        // Setting up the configuration. For example, to enable logging.
        .withLogs()
        .build();
// Initializing the AppMetrica SDK.
YandexMetrica.activate(getApplicationContext(), config);

5.启用/禁用位置记录,默认记录:

// Creating an extended library configuration.
YandexMetricaConfig config = YandexMetricaConfig.newConfigBuilder(API_key)
        // Disabling the data sending about the device location.
        .withLocationTracking(false)
        .build();
// Initializing the AppMetrica SDK.
YandexMetrica.activate(getApplicationContext(), config);

手动设置位置:

1.在初始化的时候设置位置

// Determining the location.
Location currentLocation = ...;

// Creating an extended library configuration.
YandexMetricaConfig config = YandexMetricaConfig.newConfigBuilder(API_key)
        // Set your own location information of the device.
        .withLocation(currentLocation)
        .build();
// Initializing the AppMetrica SDK.
YandexMetrica.activate(getApplicationContext(), config);

2.在初始化之后,具体业务中设置位置:

// Determining the location.
Location currentLocation = ...;
// Setting your own location information of the device.
YandexMetrica.setLocation(currentLocation);

如果还需要恢复成自动获取位置:

YandexMetrica.setLocation(null);

自定义事件?

json格式嵌套,深度最多五层

String eventParameters = "{\"name\":\"Alice\", \"age\":\"18\"}";

YandexMetrica.reportEvent("New person", eventParameters);

从 WebView 的 JavaScript 代码发送事件

WebView webView = (WebView) findViewById(R.id.myWebView);
// do your initialization here
webView.getSettings().setJavaScriptEnabled(true);
YandexMetrica.initWebViewReporting(webView);
webView.loadUrl(myURL);

?js发送事件:

function buttonClicked() {
  AppMetrica.reportEvent('Button clicked!', '{}');
})

初始化建议

  • 如果您的应用程序有多个进程,请为每个进程使用相同的配置初始化库。否则,配置可能取决于哪个进程首先启动。
  • Application.onCreate()方法中初始化 AppMetrica 库。这将在每个进程中初始化库。
    如果在集成第三方库后出现初始化错误,请确保仅在主进程中初始化第三方库。
  • ContentProvider
    实例是在Application
    实例之前创建的。如果您在Application.onCreate()中初始化库,您将在ContentProvider.onCreate()无法从该方法发送数据。
  • 避免在Application.onCreate()方法中进行冗长的操作。因为该方法的执行时间直接影响第一个Activity、Service或Receiver的启动速度。???????

跟踪本机应用程序崩溃

如果将库 SO 文件添加到项目中,则会自动报告本机应用程序崩溃。默认情况下没有 SO 文件。要添加它们,请在块中的build.gradle文件中添加以下依赖项dependencies

dependencies {
    ...
    implementation 'com.yandex.android:mobmetricalib-ndk-crashes:1.1.0'
}

如果要禁用自动跟踪方法

// Creating an extended library configuration.
YandexMetricaConfig config = YandexMetricaConfig.newConfigBuilder(API_key)
        // Disabling the data sending about the native app crashes.
        .withNativeCrashReporting(false)
        .build();
// Initializing the AppMetrica SDK.
YandexMetrica.activate(getApplicationContext(), config);

  移动开发 最新文章
Vue3装载axios和element-ui
android adb cmd
【xcode】Xcode常用快捷键与技巧
Android开发中的线程池使用
Java 和 Android 的 Base64
Android 测试文字编码格式
微信小程序支付
安卓权限记录
知乎之自动养号
【Android Jetpack】DataStore
上一篇文章      下一篇文章      查看所有文章
加:2021-11-12 19:42:39  更:2021-11-12 19:43:09 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 3:23:16-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码