BugtagsInsta for Android, a powerful plugin for Bugtags SDK, monitor your mobile app in real-time, providing instant & rich information for your development.
- Real-time monitor cpu, memory & storge usage.
- Real-time monitor console logs.
- Real-time monitor user operate steps.
- Real-time monitor network reqeust data.
Learn more: https://docs.bugtags.com/zh/bugtagsinsta/index.html
BugtagsInsta requires SDK 9 and above.
1.Setup dependency in your app module's build.gradle
dependencies {
...
compile 'com.bugtags.library:bugtags-insta:latest.integration'
}
sync gradle file, library will be downloaded in seconds.
2.After start Bugtags SDK, register BugtagsInsta as a plugin
Bugtags.start("APP_KEY", this, Bugtags.BTGInvocationEventBubble);
Bugtags.registerPlugin(new BugtagsInsta());
3.You can customized listening port(10222 by default) of BugtagsInsta by passing an constructor parameter(it's recommended to be greater than 10000):
Bugtags.start("APP_KEY", this, Bugtags.BTGInvocationEventBubble);
Bugtags.registerPlugin(new BugtagsInsta(10080));
-
Download SDK and extract it
-
drag
bugtags-insta-[version].jarto libs folder of Eclipse, and add to buildpath -
After start Bugtags SDK, register BugtagsInsta as a plugin
Bugtags.start("APP_KEY", this, Bugtags.BTGInvocationEventBubble); Bugtags.registerPlugin(new BugtagsInsta()); -
You can customize listening port(10222 by default) of
BugtagsInstaby passing an constructor parameter(it's recommended to be greater than 10000):Bugtags.start("APP_KEY", this, Bugtags.BTGInvocationEventBubble); Bugtags.registerPlugin(new BugtagsInsta(10080));