1、增加 自建APM统计 Countly
http://countly.zhidaozhixing.com/
用户名是拼音全拼,密码MoGo@123
This commit is contained in:
donghongyu-pc
2024-11-04 19:17:25 +08:00
parent 2d549caec6
commit 79e70718cd
3 changed files with 101 additions and 0 deletions

View File

@@ -7,6 +7,7 @@ apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
apply plugin: ly.count.android.plugins.UploadSymbolsPlugin
apply from: rootProject.file('gradle/bytex/bytex.gradle')
@@ -226,6 +227,9 @@ dependencies {
implementation project(':OCH:facade')
implementation 'com.mogo.cloud:countly-sdk:1.4.7.49.18-debug'
implementation 'com.mogo.cloud:countly-sdk-native:1.4.7.49.18-debug'
androidTestImplementation rootProject.ext.dependencies.androidx_test_core
androidTestImplementation rootProject.ext.dependencies.androidx_test_core_ktx
androidTestImplementation rootProject.ext.dependencies.androidx_unit_ext
@@ -359,3 +363,29 @@ def variantName() {
}
countly {
// required by both tasks
server "http://countly.zhidaozhixing.com"
// same app_key used for SDK integration
app_key "45cccb4a005ca14b79fca7d24b69e1a67730e325"
// location of mapping.txt file relative to project build directory
mappingFile "outputs/mapping/release/mapping.txt"
// note that will be saved with the upload and can be checked in the UI
noteJava "sdk-plugin automatic upload of mapping.txt"
// optional properties for uploadNativeSymbols. Shown are the default values.
// directory of .so files relative to project build directory.
// you can check the tar.gz file created under intermediates/countly
// BUILD_TYPE could be debug or release
nativeObjectFilesDir "intermediates/merged_native_libs/BUILD_TYPE"
// path for breakpad tool dump_syms executable
dumpSymsPath "/usr/bin"
// note that will be saved with the upload and can be checked in the UI
noteNative "sdk-plugin automatic upload of breakpad symbols"
}