Skip to content

0x03h AppSize_en

hui.zhao edited this page Dec 7, 2019 · 2 revisions

AppSize

Install

Use the following configuration to install

GodEye.instance().install(GodEyeConfig.defaultConfigBuilder().withAppSizeConfig(new GodEyeConfig.AppSizeConfig(0)).build());

or

<appSize delayMillis="0"/>

delayMillis is used to indicate the delay time of getting appsize information

Production and consumption of data

Use the following methods to observe the output:

try {
        GodEye.instance().observeModule(GodEye.ModuleName.APP_SIZE, new Consumer<AppSizeInfo>() {
                @Override
                public void accept(AppSizeInfo appSizeInfo) throws Exception {
                }
            });
        } catch (UninstallException e) {
            e.printStackTrace();
        }

Will be output after delayMillis milliseconds when install.

DebugMonitor Dashboard

android_god_eye_appsize

Clone this wiki locally