核心模块
核心模块是 GrowingIO 中必须包含的模块功能,它们和核心库组成了SDK最基本的功能。
核心库
名称 | 说明 | 依赖 |
---|---|---|
埋点 Library | 埋点核心库,包含最基本的埋点逻辑 | com.growingio.android:tracker-core:3.5.4 |
无埋点 Library | 无埋点核心库,依赖于埋点核心库,包含无埋点的注入逻辑 | com.growingio.android:autotracker-core:3.5.4 |
模块注解库 | 注解声明,通过注解可以自动生成 SDK 的初始化类来注册所有的模块和聚合模块内的配置类。 | com.growingio.android:annotation:3.5.4 |
注解解析器 | 与上面注解配合使用 | com.growingio.android:compiler:3.5.4 |
数据库模块
使用默认数据库 sqlite,用于存储事件防止数据丢失。
SDK 事件通过 EventDatabase
来传递到数据库并进行增删改查的操作。通过 EventDbResult
返回数据库操作接口。
依赖方式
- 依赖
- BoM
dependencies {
implementation 'com.growingio.android:database:3.5.4'
}
dependencies {
// Import the BoM for the GrowingIO platform
implementation platform('com.growingio.android:autotracker-bom:3.5.4')
implementation 'com.growingio.android:database'
}
网络请求库
默认使用 okhttp3
网络请求框架,用于将事件数据传输到服务器中。
SDK 事件通过 EventUrl
指定请求方式、服务器请求地址,再通过网络模块进行发送。 返回 EventResponse
通知请求结果。
若是应用使用了其他的网络请求框架,可以选择其他的网络模块,如 volley
或 urlconnection
依赖方式
- 依赖
- BoM
dependencies {
// 网络模块-okhttp3
implementation 'com.growingio.android:okhttp3:3.5.4'
// 可选网络模块-volley
implementation 'com.growingio.android:volley:3.5.4'
// 可选网络模块-urlconnection
implementation 'com.growingio.android:urlconnection:3.5.4'
}
dependencies {
// Import the BoM for the GrowingIO platform
implementation platform('com.growingio.android:autotracker-bom:3.5.4')
// 网络模块-okhttp3
implementation 'com.growingio.android:okhttp3'
// 可选网络模块-volley
implementation 'com.growingio.android:volley'
// 可选网络模块-urlconnection
implementation 'com.growingio.android:urlconnection'
}
数据格式库
默认使用 json
来做数据传输的格式。通过数据格式转换可以将输入 EventFormatData
转为字节数组数据 EventByteArray
方便网络数据上传。
依赖方式
- 依赖
- BoM
dependencies {
implementation 'com.growingio.android:json:3.5.4'
}
dependencies {
// Import the BoM for the GrowingIO platform
implementation platform('com.growingio.android:autotracker-bom:3.5.4')
implementation 'com.growingio.android:json'
}