Description
traffic debugging library for android
traffic monitor alternatives and similar packages
Based on the "Debug" category.
Alternatively, view traffic monitor alternatives based on common mentions on social networks and blogs.
-
Android Debug Database
Android Debug Database is a powerful library for debugging databases and shared preferences in Android applications. -
Pidcat
a colored command-line ADB wrapper that only shows log entries for a specific application package -
ADB Enhanced
a command-line wrapper around ADB for developers, so that, developers don't have to remember esoteric version-dependent commands -
android-grid-wichterle
This app will show grid overlay over whole system which helps you to verify your excellent app design. -
Under the Hood
Under the Hood is a flexible and powerful Android debug view library. It uses a modular template system that can be easily extended to your needs, although coming with many useful elements built-in. -
Android Snooper
Android library to record the network calls through the interceptor mechanism of the http clients. -
Android DebugPort
A Read-Eval-Print-Loop server for Android -
Zabbix Unifi Video
No description, website, or topics provided. -
AppSpector
Remote Android and iOS debugging and data collection service. You can debug networking, logs, SQLite and mock device's geo location.
Get performance insights in less than 4 minutes
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
Do you think we are missing an alternative of traffic monitor or a related project?
README
TrafficMonitor
About
Display traffic per Activity.Observing traffic is used by TrafficStats
API.
OkHttp Interceptor observer is implementing.
Demo
Baisis
TrafficMonitor.snap
Use TrafficMonitor.snap
to dump traffic from before execute to logcat.
For example
adb logcat -s TrafficMonitor
06-04 00:56:52.049 18147 18147 D TrafficMonitor: Fragment:1:Fragment:1:
06-04 00:56:52.049 18147 18147 D TrafficMonitor: 0B
06-04 00:56:52.049 18147 18147 D TrafficMonitor: 11.28KB
06-04 00:57:02.174 18147 18147 D TrafficMonitor: Fragment:2:Fragment:2:
06-04 00:57:02.174 18147 18147 D TrafficMonitor: 0B
06-04 00:57:02.174 18147 18147 D TrafficMonitor: 10.82KB
Usage
Basis
Implement at in your Application
class.
class App: Application() {
override fun onCreate() {
super.onCreate()
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
if (Settings.canDrawOverlays(this)) {
val config = DisplayConfig(WindowManager.LayoutParams.TYPE_SYSTEM_ALERT, DisplayPosition.BOTTOM_RIGHT)
TrafficMonitor.startMonitoring(this, config)
}
} else {
TrafficMonitor.startMonitoring(this)
}
}
override fun onTerminate() {
TrafficMonitor.stopMonitoring(this)
super.onTerminate()
}
If you want support Android O,you can use WindowManager.LayoutParams.TYPE_APPLICATION_OVERLAY flag.
snapshot
observe not per Activity, use TrafficMonitor.snap
.
TODO
- [ ] Observe by OkHttpIntercpeter
License
Copyright 2017 Tetsuya Masuda
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.
*Note that all licence references and agreements mentioned in the traffic monitor README section above
are relevant to that project's source code only.