Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Bytex | 2,359 | 2 years ago | 32 | apache-2.0 | Java | |||||
ByteX is a bytecode plugin platform based on Android Gradle Transform API and ASM. 字节码插件开发平台 | ||||||||||
Scouter | 1,979 | 2 | 2 | a month ago | 27 | May 29, 2023 | 190 | other | Java | |
Scouter is an open source APM (Application Performance Management) tool. | ||||||||||
Hunter | 1,248 | a year ago | 3 | July 05, 2022 | 11 | Java | ||||
A fast, incremental, concurrent framework to develop compile plugin for android project to manipulate bytecode | ||||||||||
Methodtraceman | 1,226 | 3 years ago | 20 | Kotlin | ||||||
用于快速找到高耗时方法,定位解决Android App卡顿问题。通过gradle plugin+ASM实现可配置范围的方法插桩来统计所有方法的耗时,并提供友好的界面展示,支持耗时筛选、线程筛选、方法名筛选等。(A Tool for Discovering High Time-consuming Methods for Android App) | ||||||||||
Androidautotrack | 876 | a year ago | 1 | Kotlin | ||||||
Android Asm 插桩 教学 | ||||||||||
R2dec Js | 457 | a month ago | 36 | C | ||||||
radare2 plugin - converts asm to pseudo-C code. | ||||||||||
Luffy | 390 | 4 years ago | n,ull | Java | ||||||
Android字节码插件,编译期间动态修改代码,改造添加全埋点日志采集功能模块,对常见控件进行监听处理 | ||||||||||
Luffy | 388 | 4 years ago | 4 | Java | ||||||
Android字节码插件,编译期间动态修改代码,改造添加全埋点日志采集功能模块,对常见控件进行监听处理 | ||||||||||
Sa Sdk Android Plugin2 | 379 | 4 months ago | 69 | October 24, 2022 | 6 | apache-2.0 | Kotlin | |||
神策数据官方 Android 埋点插件,用于 Android 端的数据采集。通过使用字节码插桩(ASM)的技术实现 Android 端的全埋点(无埋点、无码埋点、无痕埋点、自动埋点)。 | ||||||||||
Awesome Android Architecture | 303 | 6 months ago | 1 | apache-2.0 | ||||||
:rocket: Android 架构师成长之路(进行中~) |
神策数据 (Sensors Data),隶属于神策网络科技(北京)有限公司,是一家专业的大数据分析服务公司,大数据分析行业开拓者,为客户提供深度用户行为分析平台、以及专业的咨询服务和行业解决方案,致力于帮助客户实现数据驱动。神策数据立足大数据及用户行为分析的技术与实践前沿,业务现已覆盖以互联网、金融、零售快消、高科技、制造等为代表的十多个主要行业、并可支持企业多个职能部门。公司总部在北京,并在上海、深圳、合肥、武汉等地拥有本地化的服务团队,覆盖东区及南区市场;公司拥有专业的服务团队,为客户提供一对一的客户服务。公司在大数据领域积累的核心关键技术,包括在海量数据采集、存储、清洗、分析挖掘、可视化、智能应用、安全与隐私保护等领域。 More
SensorsAnalytics SDK 是国内第一家开源商用版用户行为采集 SDK,目前支持代码埋点、全埋点、App 点击图、可视化全埋点等。目前已累计有 1500 多家付费客户,2500+ 的 App 集成使用,作为 App 数据采集利器,致力于帮助客户挖掘更多的商业价值,为其精准运营和业务支撑提供了可靠的数据来源。其采集全面而灵活、性能良好,并一直保持稳定的迭代,经受住了时间和客户的考验。
Gradle 编译环境(Android Studio)
(1)在 project 级别的 build.gradle 文件中添加 android-gradle-plugin 依赖:
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.0'
//添加 android-gradle-plugin 依赖
classpath 'com.sensorsdata.analytics.android:android-gradle-plugin2:3.5.4'
}
}
allprojects {
repositories {
mavenCentral()
}
}
(2)在 主 module 的 build.gradle 文件中添加 com.sensorsdata.analytics.android 插件、Sensors Analytics SDK 依赖:
apply plugin: 'com.android.application'
//添加 com.sensorsdata.analytics.android 插件
apply plugin: 'com.sensorsdata.analytics.android'
dependencies {
//添加 Sensors Analytics SDK 依赖
implementation 'com.sensorsdata.analytics.android:SensorsAnalyticsSDK:6.6.3'
}
See our full manual
扫码加入神策数据开源社区 QQ 群 群号:785122381 |
扫码加入神策数据开源社区微信群 |
---|---|
![]() |
![]() |
扫码关注 神策数据开源社区 |
扫码关注 神策数据开源社区服务号 |
---|---|
![]() |
![]() |
《数据驱动:从方法到实践》 | 《Android 全埋点解决方案》 | 《iOS 全埋点解决方案》 |
---|---|---|
![]() |
![]() |
![]() |
gradle_plugin_android_aspectjx
Copyright 2015-2023 Sensors Data Inc.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.gradle_plugin_android_aspectjx