2.0.0
Splitting the lib into 2 flavours.
com.github.avohq.android-avo-inspector:dev:TAG
includes the visual debugger and a SYSTEM_ALERT_WINDOW
permission
com.github.avohq.android-avo-inspector:prod:TAG
does not include the visual debugger and a SYSTEM_ALERT_WINDOW
permission
Suggested usage is:
releaseImplementation 'com.github.avohq.android-avo-inspector:prod:TAG'
debugImplementation 'com.github.avohq.android-avo-inspector:dev:TAG'
Breaking changes
-
Inspector.getVisualInspector()
now returns a nullableObject
instead of nullableDebuggerManager
. You can safely cast it to a nullableDebuggerManager
in the dev build and it will always benull
in the prod build. -
Dependency reference is changed to
com.github.avohq.android-avo-inspector:dev:TAG
andcom.github.avohq.android-avo-inspector:prod:TAG
(used to be fromcom.github.avohq:android-avo-inspector:TAG
)